Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Invalid
-
2.2.0
-
None
-
fedora 11
Description
During the last week, all our hibernate dependencies stopped working. Was the repo reorganized to the detriment of ivy resolution? We use ivyroundup and jboss nexus repositories.
Can you verify please and/or let me know if there is a workaround? When I try ivyresolve, my client throws this error:
[ivy:resolve] [get] Error opening connection java.io.FileNotFoundException: https://repository.jboss.org/nexus/content/repositories/public/org/hibernate/hibernate-annotations/3.4.0.GA/hibernate-annotations-3.4.0.GA.jar
You will notice from my ivysettings below that this is not the url I requested. Did the repo folks reorganize something improperly? ivy roundup fails also apparently because ivyroundup points to jboss nexus:
[ivy:resolve] http://ivyroundup.googlecode.com/svn/trunk/repo/modules/org.hibernate/hibernate-annotations/3.4.0.GA/packager.xml
[ivy:resolve] [FAILED ] org.hibernate#hibernate-annotations;3.4.0.GA!hibernate-annotations.jar: The following error occurred while executing this line:
[ivy:resolve] /home/djg/.ivy2/packager/build/org.hibernate/hibernate-annotations/3.4.0.GA/packager-output.xml:28: Can't get https://repository.jboss.org/nexus/content/repositories/public/org/hibernate/hibernate-annotations/3.4.0.GA/hibernate-annotations-3.4.0.GA.jar to /home/djg/.ivy2/packager/cache/hibernate-annotations-3.4.0.GA.jar (1409ms)
Thanks for your help.
Here is my dependency:
<dependency org="org.hibernate" name="hibernate-annotations" rev="3.4.0.GA" transitive="false" />
And my ivysettings resolver:
<chain name="master-chain-resolver">
<url name="jboss-repo" m2compatible="true">
<ivy pattern="http://repository.jboss.org/nexus/[organisation]/[module]/[revision]/[artifact]-[revision].pom"/>
<artifact pattern="http://repository.jboss.org/nexus/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]"/>
</url>
<packager name="ivyroundup"
buildRoot="${user.home}/.ivy2/packager/build"
resourceCache="${user.home}/.ivy2/packager/cache">
<ivy pattern="http://ivyroundup.googlecode.com/svn/trunk/repo/modules/[organisation]/[module]/[revision]/ivy.xml"/>
<artifact pattern="http://ivyroundup.googlecode.com/svn/trunk/repo/modules/[organisation]/[module]/[revision]/packager.xml"/>
</packager>
</chain>