new source tree for CatalinaRealmAdapter
authormaxcooper <maxcooper>
Sat, 17 Aug 2002 14:12:33 +0000 (14:12 +0000)
committermaxcooper <maxcooper>
Sat, 17 Aug 2002 14:12:33 +0000 (14:12 +0000)
build.xml

index 81fe50a..3ffe0c8 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -76,7 +76,7 @@
     <!-- Should Java compilations set the optimize compiler option? -->
     <property name="compile.optimize" value="true" />
 
-    <!-- Name of the core struts library -->
+    <!-- Name of the core securityfilter library -->
     <property name="app.name" value="securityfilter"/>
 
     <!-- Name of the project -->
     <!-- Source directory for core securityfilter library -->
     <property name="src.share.dir" value="${src.dir}/share"/>
 
+    <!-- Source directory for securityfilter-catalina library -->
+    <property name="src.catalina.dir" value="${src.dir}/catalina"/>
+
     <!-- Directory where core struts library configurations files are stored -->
     <property name="conf.share.dir" value="conf/share"/>
 
             deprecation="${compile.deprecation}">
           <classpath refid="compile.classpath"/>
         </javac>
+        <!-- catalina -->
+        <javac srcdir="${src.catalina.dir}"
+            destdir="${build.home}/library/classes"
+            debug="${compile.debug}"
+            optimize="${compile.optimize}"
+            deprecation="${compile.deprecation}">
+          <classpath refid="compile.classpath"/>
+        </javac>
         <copy todir="${build.home}/library">
             <fileset dir="${conf.share.dir}" includes="*.dtd"/>
         </copy>
      description="Generate JavaDoc API docs">
         <delete dir="${build.home}/documentation/api"/>
         <mkdir dir="${build.home}/documentation/api"/>
-        <javadoc sourcepath="${src.share.dir}"
+        <javadoc
             destdir="${build.home}/documentation/api"
             classpath="${servlet.jar}"
             packagenames="org.securityfilter.*"
             windowtitle="Security Filter API Documentation"
             doctitle="&lt;h1&gt;Security Filter (Version ${project.version})&lt;/h1&gt;"
             bottom="Copyright &#169; 2002 - SecurityFilter.org">
+            <sourcepath>
+               <pathelement location="${src.share.dir}" />
+               <pathelement location="${src.catalina.dir}" />
+            </sourcepath>
             <classpath refid="compile.classpath"/>
         </javadoc>
     </target>