This url now only contains the snapshots:
http://wicketstuff.org/maven/repository/
all wicket builds on bamboo will deploy them selfs to that repository when
build.
All the other projects of wicket stuff (dojo/swarm/wasp) should alter there
pom files and Bamboo plan configuration
if they want to deploy to that, so instead of "clean install" "clean deploy"
should be used and the 'remote' repository should be:
<distributionManagement>
<snapshotRepository>
<id>repo</id>
<name>Local Bamboo/Tomcat repository</name>
<url>file:/home/wicket/tomcat/webapps/maven/repository/</url>
</snapshotRepository>
</distributionManagement>
(this is purely for snaphost builds if you want to also deploy release
builds on it you have to use <repository> instead of <snapshotRepository>
johan