costin 01/02/19 11:45:14
Modified: . build.xml
Log:
- removed unused target ( modules.xml auto-generation experiment, too much work
for this release )
- stop-tomcat.jar includes IntrospectionUtils, guess TOMCAT_HOME ( no need
to set it in the command line, can start from any dir )
Revision Changes Path
1.118 +4 -25 jakarta-tomcat/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-tomcat/build.xml,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- build.xml 2001/02/16 05:37:50 1.117
+++ build.xml 2001/02/19 19:45:11 1.118
@@ -129,7 +129,8 @@
<!-- no dependencies -->
<include name="org/apache/tomcat/startup/Main.java"/>
<include name="org/apache/tomcat/util/compat/**"/>
- <exclude name="**/util/compat/Jdk12Support.java" unless="jdk12.present"/>
<include name="org/apache/tomcat/util/IntrospectionUtils.java"/>
+ <exclude name="**/util/compat/Jdk12Support.java" unless="jdk12.present"/>
+ <include name="org/apache/tomcat/util/IntrospectionUtils.java"/>
</javac>
<jar jarfile="${tomcat.build}/lib/tomcat.jar"
basedir="${tomcat.build}/classes"
@@ -149,6 +150,7 @@
srcdir="src/share">
<!-- no dependencies -->
<include name="org/apache/tomcat/startup/StopTomcat.java"/>
+ <include name="org/apache/tomcat/util/IntrospectionUtils.java"/>
</javac>
<copy todir="${tomcat.build}/classes/org/apache/tomcat/resources">
<fileset dir="src/share/org/apache/tomcat/resources">
@@ -162,6 +164,7 @@
<include name="org/apache/tomcat/startup/StopTomcat.class"/>
<include name="org/apache/tomcat/util/StringManager.class"/>
<include name="org/apache/tomcat/resources/LocalStrings*"/>
+ <include name="org/apache/tomcat/util/IntrospectionUtils**"/>
</jar>
</target>
@@ -431,30 +434,6 @@
<chmod perm="+x" file="${tomcat.dist}/bin/startup.sh"/>
<chmod perm="+x" file="${tomcat.dist}/bin/shutdown.sh"/>
</target>
-
- <target name="modulesDoc.xml" >
- <!-- using alexandria'x XMLDoclet -->
- <javac srcdir="src/build"
- destdir="${tomcat.build}/classes"
- debug="${debug}"
- optimize="${optimize}"
- deprecation="off" >
- <classpath>
- <pathelement location="${java.home}/../lib/tools.jar"/>
- </classpath>
- </javac>
- <javadoc packagenames="org.apache.tomcat.modules.*,org.apache.tomcat.facade.*"
- sourcepath="src/share;src/facade22"
- destdir="${tomcat.dist}/webapps/ROOT/javadoc"
- author="true"
- version="true" >
- <doclet name="XMLDoclet" path="${tomcat.build}/classes" >
- <param name="-file" value="${tomcat.build}/conf/modulesDoc.xml" />
- </doclet>
- </javadoc>
- </target>
-
-
<!-- =================================================================== -->
<!-- Packages the distribution with ZIP -->
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]