adoroszlai opened a new pull request, #1314: URL: https://github.com/apache/ratis/pull/1314
## What changes were proposed in this pull request? Ratis defines some repositories unnecessarily. 1. Ratis does not use any snapshot dependencies. Even if it did, we could use repo definition from Apache parent POM. 2. Central repo contains all dependencies, JBoss repo is not needed. https://issues.apache.org/jira/browse/RATIS-2358 ## How was this patch tested? Full CI: https://github.com/adoroszlai/ratis/actions/runs/19325584112 [Before](https://github.com/adoroszlai/ratis/actions/runs/19289778625/job/55157641092#step:11:18), build unsuccessfully tried to download few Apache dependencies from `repository.jboss.org`. All other dependencies were fetched from Central without attempt from JBoss. ``` [INFO] Downloading from repository.jboss.org: https://repository.jboss.org/nexus/content/groups/public/org/apache/apache/35/apache-35.pom [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/35/apache-35.pom [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/35/apache-35.pom (24 kB at 276 kB/s) ... [INFO] Downloading from repository.jboss.org: https://repository.jboss.org/nexus/content/groups/public/org/apache/apache/resources/apache-jar-resource-bundle/1.7/apache-jar-resource-bundle-1.7.jar [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/resources/apache-jar-resource-bundle/1.7/apache-jar-resource-bundle-1.7.jar [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/resources/apache-jar-resource-bundle/1.7/apache-jar-resource-bundle-1.7.jar (13 kB at 391 kB/s) ... [INFO] Downloading from repository.jboss.org: https://repository.jboss.org/nexus/content/groups/public/org/apache/ratis/ratis-thirdparty-misc/1.0.10/ratis-thirdparty-misc-1.0.10.pom [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty-misc/1.0.10/ratis-thirdparty-misc-1.0.10.pom [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty-misc/1.0.10/ratis-thirdparty-misc-1.0.10.pom (13 kB at 405 kB/s) [INFO] Downloading from repository.jboss.org: https://repository.jboss.org/nexus/content/groups/public/org/apache/ratis/ratis-thirdparty/1.0.10/ratis-thirdparty-1.0.10.pom [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty/1.0.10/ratis-thirdparty-1.0.10.pom [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty/1.0.10/ratis-thirdparty-1.0.10.pom (17 kB at 362 kB/s) [INFO] Downloading from repository.jboss.org: https://repository.jboss.org/nexus/content/groups/public/org/apache/ratis/ratis-thirdparty-misc/1.0.10/ratis-thirdparty-misc-1.0.10.jar [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty-misc/1.0.10/ratis-thirdparty-misc-1.0.10.jar [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty-misc/1.0.10/ratis-thirdparty-misc-1.0.10.jar (19 MB at 66 MB/s) ``` [After](https://github.com/adoroszlai/ratis/actions/runs/19325584112/job/55275838093#step:11:18), no such attempts: ``` [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/35/apache-35.pom [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/35/apache-35.pom (24 kB at 43 kB/s) ... [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/resources/apache-jar-resource-bundle/1.7/apache-jar-resource-bundle-1.7.jar [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/resources/apache-jar-resource-bundle/1.7/apache-jar-resource-bundle-1.7.jar (13 kB at 537 kB/s) ... [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty-misc/1.0.10/ratis-thirdparty-misc-1.0.10.pom [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty-misc/1.0.10/ratis-thirdparty-misc-1.0.10.pom (13 kB at 483 kB/s) [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty/1.0.10/ratis-thirdparty-1.0.10.pom [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty/1.0.10/ratis-thirdparty-1.0.10.pom (17 kB at 567 kB/s) [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty-misc/1.0.10/ratis-thirdparty-misc-1.0.10.jar [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ratis/ratis-thirdparty-misc/1.0.10/ratis-thirdparty-misc-1.0.10.jar (19 MB at 62 MB/s) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
