mturk 2005/02/05 04:33:25 Modified: jni build.xml Log: Add examples to build Revision Changes Path 1.2 +40 -1 jakarta-tomcat-connectors/jni/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/jni/build.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- build.xml 15 Jan 2005 11:27:31 -0000 1.1 +++ build.xml 5 Feb 2005 12:33:25 -0000 1.2 @@ -39,7 +39,7 @@ <!-- Build classpath --> <path id="classpath"> - <pathelement location="${build.dest}"/> + <pathelement location="${build.dest}/java"/> </path> <!-- Test classpath --> @@ -148,6 +148,45 @@ </copy> </target> + <!-- =================================================================== --> + <!-- Compiles the examples directory --> + <!-- =================================================================== --> + <target name="examples" depends="compile"> + <mkdir dir="${build.dest}"/> + <mkdir dir="${build.dest}/examples"/> + <mkdir dir="${build.src}"/> + <mkdir dir="${build.src}/examples"/> + <tstamp> + <format property="TODAY" pattern="MMM d yyyy" locale="en"/> + <format property="TSTAMP" pattern="hh:mm:ss"/> + </tstamp> + <!-- Copy static resource files --> + <filter token="VERSION" value="${version}"/> + <filter token="VERSION_NUMBER" value="${version.number}"/> + <filter token="VERSION_BUILT" value="${TODAY} ${TSTAMP}"/> + <copy todir="${build.src}/examples" filtering="yes"> + <fileset dir="${src.dir}/examples"> + <include name="**/*.java"/> + <include name="**/*.xml"/> + <include name="**/*.properties"/> + </fileset> + </copy> + + <javac srcdir="${build.src}/examples" + destdir="${build.dest}/examples" + debug="${debug}" + deprecation="${deprecation}" + optimize="${optimize}"> + <classpath refid="examples.classpath"/> + </javac> + <copy todir="${build.dest}/examples" filtering="yes"> + <fileset dir="${build.src}/examples"> + <include name="**/*.xml"/> + <include name="**/*.properties"/> + </fileset> + </copy> + </target> + <!-- ================================================================== --> <!-- Make Tomcat Native jar --> <!-- ================================================================== -->
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]