Was this ever integrated into Maven directly? Chris Kimpton <[EMAIL PROTECTED]> writes:
> Hi, > > The attached patch runs some test preparation that stratum needs - > copying some properties files across. > > I think the tests only worked for me before because I had been > running the old build-test file too - and thus it had put things in > the right place... > > I have delegated the work to the build-test.xml prepare task rather > than duplicating it. > > Chris > > ===== > ------------------------------------------ > http://www.soccer2002.org.uk > > __________________________________________________ > Do You Yahoo!? > Yahoo! Tax Center - online filing with TurboTax > http://taxes.yahoo.com/ > > ? docs > ? lib > ? stratum.ipr > ? target > ? test-reports > ? testfix.diffu > Index: build-maven.xml > =================================================================== > RCS file: /home/cvspublic/jakarta-turbine-stratum/build-maven.xml,v > retrieving revision 1.3 > diff -u -r1.3 build-maven.xml > --- build-maven.xml 18 Mar 2002 15:04:28 -0000 1.3 > +++ build-maven.xml 5 Apr 2002 22:17:56 -0000 > @@ -44,7 +44,8 @@ > </target> > > <target > - name="maven:test"> > + name="maven:test" > + depends="test-prepare"> > <ant antfile="${maven.home}/build-test.xml" target="test"/> > </target> > > @@ -94,5 +95,15 @@ > </target> > > <!-- maven:end --> > + > + > + <!-- ================================================================== --> > + <!-- STRATUM SPECIFIC DELEGATORS --> > + <!-- ================================================================== --> > + > + <target > + name="test-prepare"> > + <ant antfile="build-test.xml" target="prepare"/> > + </target> > > </project> > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
