kaz 02/05/14 14:41:34
Modified: xdocs/start integrate.xml
Log:
Minor correction to one of the example targets in the documentation.
Also made reference to the example build.xml file that is included in
the ${maven.home}/examples directory. That build.xml file should be
used as it contains all of the latest delegators.
Revision Changes Path
1.7 +11 -4 jakarta-turbine-maven/xdocs/start/integrate.xml
Index: integrate.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/xdocs/start/integrate.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- integrate.xml 10 May 2002 03:19:33 -0000 1.6
+++ integrate.xml 14 May 2002 21:41:34 -0000 1.7
@@ -215,7 +215,10 @@
the same delegators as other Maven projects, its becomes very
easy for developers to use your project's build system. The
following is the list of standard delegators that should be
- added to your build file:
+ added to your build file (Note: there is a sample build file
+ located in your <code>${maven.home}/examples</code>
+ directory called <code>build.xml</code> that already includes
+ the following lines):
</p>
<source><![CDATA[<!-- maven:start -->
@@ -263,7 +266,7 @@
<ant antfile="${maven.home}/build-iutest.xml" target="test"/>
</target>
-<target name="maven:singletest">
+<target name="maven:run-singletest">
<ant antfile="${maven.home}/build-test.xml" target="run-singletest"/>
</target>
@@ -386,9 +389,13 @@
<p>
The suggested method for loading the required and custom
properties is to add the following lines to the top of your
- build file (assuming you've defined the required properties
+ build file assuming you've defined the required properties
in <code>${user.home}/build.properties</code> as the <a
- href="install.html">Install</a> document suggests):
+ href="install.html">Install</a> document suggests (Note:
+ there is a sample build file located in your
+ <code>${maven.home}/examples</code> directory called
+ <code>build.xml</code> that already includes the following
+ lines):
</p>
<source><![CDATA[<!-- Allow any user specific values to override the
defaults -->
<property file="${user.home}/build.properties" />
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>