On Wed, 2002-07-24 at 08:46, Scott Eade wrote: > >> Can someone please set me on the one true path. > > > > Right now you have to: > > > > 1) set maven.home in ~/build.properties > > 2) set maven.repo.local in ~/build.properties > > 3) set MAVEN_HOME envar > > 4) add $MAVEN_HOME/bin to your path > > 5) ant -f build-bootstrap.xml > > > > You should then have a running version of Maven. > > > Excellent. Thanks Jason and Martin for your speedy replies. > > I assume to build torque all I should need to do is: > > maven maven:jar > > But this fails with: > [ERROR] Goal "maven:jar" does not exist in this project. > > Is there anything special I need to do because this is using maven b5? > > Can I trouble you for another push in the right direction.
maven -p project-b5.xml should do it, the default goal is java:jar. Explicitly to build the JAR: maven -p project-b5.xml java:jar > Thanks again, > > Scott > -- > Scott Eade > Backstage Technologies Pty. Ltd. > Web: http://www.backstagetech.com.au > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- jvz. Jason van Zyl [EMAIL PROTECTED] http://tambora.zenplex.org In short, man creates for himself a new religion of a rational and technical order to justify his work and to be justified in it. -- Jacques Ellul, The Technological Society -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
