- Build the examples classes.
authorremm <remm@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 16 Aug 2006 12:57:57 +0000 (12:57 +0000)
committerremm <remm@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 16 Aug 2006 12:57:57 +0000 (12:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@431891 13f79535-47bb-0310-9956-ffa450edef68

build.xml

index 12b5ffe..0ead31e 100644 (file)
--- a/build.xml
+++ b/build.xml
       </fileset>
     </copy>
 
-    <copy file="${tomcat-dbcp.jar}" todir="${tomcat.build}/lib" />
+    <!-- Build classes for examples webapp -->
+    <javac   srcdir="webapps/examples/WEB-INF/classes" 
+             destdir="${tomcat.build}/webapps/examples/WEB-INF/classes"
+             debug="${compile.debug}" deprecation="${compile.deprecation}"
+             optimize="${compile.optimize}"
+            classpath="${tomcat.classes}"
+             excludes="**/CVS/**,**/.svn/**">
+    </javac>
+
+       <copy file="${tomcat-dbcp.jar}" todir="${tomcat.build}/lib" />
     <copy file="${jasper-jdt.jar}" todir="${tomcat.build}/lib" />
 
   </target>