Description of problem: maven error I added the libvirt maven repo. But, its looking for file libvirt-0.5.1.pom and cannot find it maven says Downloading: http://libvirt.org/maven2/org/libvirt/libvirt/0.5.1/libvirt-0.5.1.pom Version-Release number of selected component (if applicable): libvirt-java 0.5.1 How reproducible: always Steps to Reproduce: 1. add libvirt repo to pom.xml <repository> <id>libvirt-org</id> <url>http://libvirt.org/maven2</url> </repository> 2. add libvirt dependency <dependency> <groupId>org.libvirt</groupId> <artifactId>libvirt</artifactId> <version>0.5.1</version> </dependency> 3. build the project Actual results: build fails as it couldn't locate the pom Reference discussion on Apache CloudStack mailing list at [2] Expected results: build should succeed Additional info: the pom filename format in the maven repo is simply pom.xml. But, it should be libvirt-0.5.1.pom as per [1] ie) $BASE_REPO/groupId/artifactId/version/artifactId-version.pom manually downloading and installing the jar with the below command worked. mvn install:install-file -Dfile=jar/location/libvirt-0.5.1.jar -DpomFile=pom/location/pom.xml -DgroupId=org.libvirt -DartifactId=libvirt -Dversion=0.5.1 -Dpackaging=jar -DgeneratePom=true [1] http://maven.apache.org/pom.html [2] http://markmail.org/thread/z3wratdglnl66fvx
CCing Claudio Bley who is the libvirt-java maintainer, but not sure if he dealt with libvirt.org maven at all
Closing old bug, since the maven2 repo on libvirt.org is unmaintained / unchanged since 2013