Le 8 mai 08 à 10:30, Jose Noheda a écrit :
Hi,
I'm trying different combinations of:
<dependency org="org.springframework.security" name="spring-security-
acl"
rev="2.0.1" conf="compile->default" force="true">
<artifact name="spring-security-acl" type="jar" />
</dependency>
<dependency org="org.springframework.security"
name="spring-security-taglibs" rev="2.0.1" conf="package_war-
>default">
<artifact name="spring-security-taglibs" type="jar" />
<artifact name="spring-security-acl" type="jar" />
</dependency>
The spring-security-acl-2.0.1.jar is downloaded but the taglib fails
with:
[ivy:retrieve] :: problems summary ::
[ivy:retrieve] :::: WARNINGS
[ivy:retrieve] [NOT FOUND ]
org.springframework.security#spring-security-acl;2.0.1!spring-
security-acl.bundle
(375ms)
[ivy:retrieve] ==== public: tried
[ivy:retrieve]
http://repo1.maven.org/maven2/org/springframework/security/spring-security-acl/2.0.1/spring-security-acl-2.0.1.bundle
[ivy:retrieve] [NOT FOUND ]
org.springframework.security#spring-security-taglibs;2.0.1!spring-
security-acl.jar
(375ms)
[ivy:retrieve] ==== public: tried
[ivy:retrieve]
http://repo1.maven.org/maven2/org/springframework/security/spring-security-taglibs/2.0.1/spring-security-acl-2.0.1.ja
[ivy:retrieve] ::::::::::::::::::::::::::::::::::::::::::::::
[ivy:retrieve] :: FAILED DOWNLOADS ::
[ivy:retrieve] :: ^ see resolution messages for details ^ ::
[ivy:retrieve] ::::::::::::::::::::::::::::::::::::::::::::::
[ivy:retrieve] ::
org.springframework.security#spring-security-taglibs;2.0.1!spring-
security-acl.jar
[ivy:retrieve] ::
org.springframework.security#spring-security-acl;2.0.1!spring-
security-acl.bundle
[ivy:retrieve] ::::::::::::::::::::::::::::::::::::::::::::::
Any ideas?
yep, see https://issues.apache.org/jira/browse/IVY-633
And there is another error in your dependency declaration :
<dependency org="org.springframework.security"
name="spring-security-taglibs" rev="2.0.1" conf="package_war-
>default">
<artifact name="spring-security-taglibs" type="jar" />
<artifact name="spring-security-acl" type="jar" />
</dependency>
you say here that you want the artifact with the name spring-security-
acl for the module spring-security-taglibs:
http://repo1.maven.org/maven2/org/springframework/security/spring-security-taglibs/2.0.1/spring-security-acl-2.0.1.jar
which obviously doesn't exists.
Nicolas