Description of problem: codehaus is dead -- must remove references to the old codehaus repo in 3.5's pom the build will fail because snmp4j is getting pulled from codehaus and not oosnmp.net Version-Release number of selected component (if applicable): 3.5 master How reproducible: always Steps to Reproduce: 1. checkout 3.5 (i used a fresh vm) 2. delete local maven repository 3. make Actual results: the build will fail Expected results: successful build Additional info: this patch should roughly do it diff --git a/pom.xml b/pom.xml index 404668a..10215ed 100644 --- a/pom.xml +++ b/pom.xml @@ -403,14 +403,6 @@ </releases> </repository> <repository> - <id>codehaus</id> - <name>Codehaus Releases</name> - <url>http://repository.codehaus.org/</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> - <repository> <id>snmp4j</id> <name>snmp4j</name> <url>https://oosnmp.net/dist/release/</url>
AFAIK we are not supposed to build oVirt 3.5 anymore. RHEV 3.5 build is done in a different way, so it shouldn't be affected. I looked at master/3.6 and we don't use this repo anymore. So shouldn't it be closed as WONTFIX?
@Martin, you have a point, but it's a pretty harmless patch and saves people a lot of frustration when we're backporting patches.
@Greg, I asked about the reason of the bug/fix, because there won't be any other 3.5 build (3.5.8 downstream was the last one), which means we will no longer need to backport any patches to 3.5 branch. But anyway, feel free to send a patch for this if you think it's still needed.
I'm not actually applying fixes to 3.5, but I'm regression testing performance issues between 4.0, 3.6, and 3.5. Which requires the ability to build 3.5 :)
Ok on my side for fixing the build there.