vmassol 02/02/28 13:57:00
Modified: anttasks build.xml
Log:
no need for ant.jar property !
Revision Changes Path
1.6 +1 -25 jakarta-cactus/anttasks/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/anttasks/build.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- build.xml 26 Feb 2002 01:13:34 -0000 1.5
+++ build.xml 28 Feb 2002 21:57:00 -0000 1.6
@@ -12,11 +12,6 @@
which is used to check coding and
naming conventions.
- The following properties need to be set in either a ./build.properties or
- a ${user.home}/build.properties one or in a calling Ant script :
-
- ant.jar [REQUIRED] Location of the Ant jar
-
This script should be started with the following command line :
ant <target>
@@ -96,15 +91,6 @@
<!--
========================================================================
- Useful patterns for targets
- ========================================================================
- -->
- <path id="project.class.path">
- <pathelement location="${ant.jar}"/>
- </path>
-
- <!--
- ========================================================================
Initialize the build. Must be called by all targets
========================================================================
-->
@@ -120,8 +106,6 @@
<echo message="user.home = ${user.home}"/>
<echo message="ant.home = ${ant.home}"/>
<echo message=""/>
- <echo message="ant.jar = ${ant.jar}"/>
- <echo message=""/>
<!-- Filters -->
<filter token="version" value="${project.version}"/>
@@ -142,9 +126,7 @@
<mkdir dir="${target.classes.java.dir}"/>
<javac srcdir="${src.java.dir}" destdir="${target.classes.java.dir}"
- deprecation="${deprecation}" optimize="${optimize}">
- <classpath refid="project.class.path"/>
- </javac>
+ deprecation="${deprecation}" optimize="${optimize}"/>
</target>
@@ -188,12 +170,6 @@
windowtitle="${project.name.text} ${project.version}"
doctitle="${project.name.text} ${project.version}"
bottom="Copyright &copy; ${year} Apache Software Foundation. All
Rights Reserved.">
-
- <classpath>
- <path refid="project.class.path"/>
- <!-- javadoc needs an XML parser -->
- <path path="${java.class.path}"/>
- </classpath>
</javadoc>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>