You need to ask johan nicely to add those projects to bamboo :)

Below is a slightly modified version of the stuff you need to place in
the pom. It will prevent bamboo from flooding the server harddisk with
snapshot builds.

        <distributionManagement>
                <snapshotRepository>
                        <id>repo</id>
                        <name>Local Bamboo/Tomcat repository</name>
                        <url>
                                
file:/home/wicket/tomcat/webapps/maven/repository/
                        </url>
                        <uniqueVersion>false</uniqueVersion>
                </snapshotRepository>
                <repository>
                        <id>repo</id>
                        <name>Local Bamboo/Tomcat repository</name>
                        <url>
                                
file:/home/wicket/tomcat/webapps/maven/repository/
                        </url>
                </repository>
        </distributionManagement>

Maurice

On 9/7/07, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]> wrote:
> So if I add the below to my maven pom, will the project automaticly be
> built and placed in maven repo at wicket stuff. Or do I need to setup
> anything additional. Currently im thinking of the gmap contrib and
> bbcodecomponent?
>
> regards Nino
>
> Johan Compagner wrote:
> > 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
> >
> >
>

Reply via email to