github-java-client
github-java-client copied to clipboard
Fix: Remove duplicate commons-io dependency in pom.xml
Description
This PR fixes a build failure caused by a duplicate declaration of the commons-io dependency in pom.xml.
The Problem
The project was failing to build with a ProjectBuildingException because commons-io (version 2.14.0) was declared twice in the dependencies list.
The Fix
I removed the duplicate entry.
Verification
I ran mvn clean install -DskipTests locally and confirmed that the build now succeeds.