I have enabled snapshots dependencies from my nexus repository using
this profile in my maven settings.xml :
<profile>
<id>alwaysActiveProfile</id>
<repositories>
<repository>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
<id>central</id>
<name>Maven Repository Switchboard</name>
<url>http://repo1.maven.org/maven2</url>
</repository>
</repositories>
</profile>
..and Im getting snapshot dependencies from the repo but not
transitive snapshot dependencies? So I added the transitive snapshot
dependency directly in my own POM and now it downloaded too, but I
really shouldnt need to do that - or is that normal?
Im using Apache Maven 2.2.1 (r801777; 2009-08-06 21:16:01+0200)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]