2014-09-28 3:18 GMT+02:00 Martin Gainty <mgai...@hotmail.com>: >> Staging Maven repo >> https://repository.apache.org/content/groups/staging/ > > https://repository.apache.org/content/groups/staging/org/apache/struts > ?
Nope, it's too deep - the best option to use that repo is to define it inside your ~/.m2/settings.xml - http://maven.apache.org/settings.html#Repositories <profiles> <profile> <id>local</id> <activation> <activeByDefault>true</activeByDefault> </activation> <repositories> <repository> <id>apache-snapshots</id> <url>https://repository.apache.org/content/groups/snapshots/</url> <layout>default</layout> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>apache-staging</id> <url>https://repository.apache.org/content/groups/staging/</url> <layout>default</layout> <releases> <enabled>false</enabled> </releases> </repository> </repositories> </profile> </profiles> Regard -- Ćukasz + 48 606 323 122 http://www.lenart.org.pl/ --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org For additional commands, e-mail: dev-h...@struts.apache.org