Yet fixing no-attr
[java-idp.git] / build.xml
index 65e9dae..1b930ec 100755 (executable)
--- a/build.xml
+++ b/build.xml
-<project default="dist" basedir=".">
+<!-- Main build configutaion for Shibboleth java components - Walter Hoehn 06/04/2002 -->
 
 
-       <property name="distname" value="shibboleth"/>
+<project name="Shibboleth" default="dist-all" basedir=".">
 
 
-       <!-- set global properties for this build -->
-       <property name="root" value="."/>
-       <property name="src" value="${root}/source"/>
-       <property name="approot" value="${root}/webApplication"/>
-       <property name="build" value="${approot}/WEB-INF/classes"/>
-       <property name="libdir" value="${approot}/WEB-INF/lib"/>
-       <property name="buildlibs" value="${root}/buildlibs"/>
-       <property name="dist" value="${root}/dist"/>
+       <!-- Set global properties for this build -->
+       <property name="distname" value="shibboleth" />
+       <property name="root" value="." />
+       <property name="src" value="${root}/src" />
+       <property name="approot" value="${root}/webApplication" />
+       <property name="configroot" value="${root}/webAppConfig" />
+       <property name="build" value="${approot}/WEB-INF/classes" />
+       <property name="libdir" value="${approot}/WEB-INF/lib" />
+       <property name="buildlibs" value="${root}/lib" />
+       <property name="dist" value="${root}/dist" />
 
 
+
+       <!-- Construct the CLASSPATH -->
        <path id="build.path">
        <path id="build.path">
-               <pathelement path="${classpath}"/>
-               <pathelement location="${build}"/>
+               <pathelement path="${classpath}" />
+               <pathelement location="${build}" />
                <fileset dir="${libdir}">
                <fileset dir="${libdir}">
-                       <include name="**/*.jar"/>
+                       <include name="**/*.jar" />
                </fileset>
                <fileset dir="${buildlibs}">
                </fileset>
                <fileset dir="${buildlibs}">
-                       <include name="**/*.jar"/>
+                       <include name="**/*.jar" />
                </fileset>
                </fileset>
-
        </path>
 
        </path>
 
+
        <!-- Prepare directory structure for project build-->
        <target name="init">
        <!-- Prepare directory structure for project build-->
        <target name="init">
-               <mkdir dir="${build}"/>
-               <mkdir dir="${dist}"/>
+       <mkdir dir="${build}" />
+       <mkdir dir="${dist}" />
        </target>
 
        </target>
 
+
+       <!-- This target should be run before checking code into the repository -->
+       <target name="pre-checkin" depends="compile-all, test-all, clean-all" />
+
+
        <!-- Compile classes and move them to ${build} -->
        <!-- Compile classes and move them to ${build} -->
-       <target name="compile" depends="init">
+       <target name="compile-all" depends="init">
                <javac srcdir="${src}" destdir="${build}" includes="**/*.java" debug="on">
                <javac srcdir="${src}" destdir="${build}" includes="**/*.java" debug="on">
-                       <classpath refid="build.path"/>
+                       <exclude name="edu/internet2/middleware/shibboleth/hs-cmu/**" />
+                       <classpath refid="build.path" />
                </javac>
                </javac>
+               <copy todir="${build}/schemas">
+                        <fileset dir="${src}/schemas"/>
+                </copy>
        </target>
 
        </target>
 
-       <target name="package">
-               <war warfile="${dist}/${distname}.war" webxml="${approot}/WEB-INF/web.xml" basedir="${approot}" update="no"/>
+
+
+       <!-- Create various product distributions and move them to ${dist} -->
+       <target name="dist" depends="dist-all" />
+       <target name="dist-all" depends="compile-all, test-all, package-all, clean-build" />
+       <target name="package-all">
+               <war warfile="${dist}/${distname}.war" webxml="${approot}/WEB-INF/web.xml" basedir="${approot}" update="no" />
        </target>
 
        </target>
 
-       <target name="dist" depends="compile, package, clean-build"/>
+       <target name="dist-origin" depends="compile-all, test-origin, package-origin, clean-build" />
+       <target name="package-origin">
+               <war warfile="${dist}/${distname}-origin.war" webxml="${configroot}/origin.xml" basedir="${approot}" update="no" />
+       </target>
 
 
-       <!-- Delete the ${build} and ${dist} directory trees -->
-       <target name="clean" depends="clean-build, clean-dist"/>
+       <target name="dist-target" depends="compile-all, test-target, package-target, clean-build" />
+       <target name="package-target">
+               <war warfile="${dist}/${distname}-target.war" webxml="${configroot}/target.xml" basedir="${approot}" update="no" />
+       </target>
 
 
-       <target name="clean-build">
-               <delete dir="${build}"/>
+       <target name="dist-target-includeswayf" depends="compile-all, test-target, test-wayf, package-target-includeswayf, clean-build" />
+       <target name="package-target-includeswayf">
+               <war warfile="${dist}/${distname}-target.war" webxml="${configroot}/target-includeswayf.xml" basedir="${approot}" update="no" />
+       </target>
+
+       <target name="dist-wayf" depends="compile-all, test-wayf, package-wayf, clean-build" />
+       <target name="package-wayf">
+               <war warfile="${dist}/${distname}-wayf.war" webxml="${configroot}/wayf.xml" basedir="${approot}" update="no" />
        </target>
 
        </target>
 
+
+       <!-- Cleanup after the build, test, and distribution processes -->
+       <target name="clean" depends="clean-all" />
+       <target name="clean-all" depends="clean-build, clean-dist, clean-test" />
+       <target name="clean-build">
+               <delete dir="${build}" />
+       </target>
+       <target name="clean-test">
+               <delete>
+                       <fileset dir="${root}">
+                               <include name="**/TEST*.txt" />
+                       </fileset>
+               </delete>
+       </target>
        <target name="clean-dist">
        <target name="clean-dist">
-               <delete dir="${dist}"/>
+               <delete dir="${dist}" />
        </target>
        </target>
+
        
        
-       <target name="test" depends="test-common" />
-       <target name="test-common" depends="compile">
-               <junit printsummary="yes" fork="no" haltonfailure="yes" haltonerror="no">
-                       <classpath refid="build.path"/>
+       <!-- Run automated tests on compiled code -->
+       <target name="test-all" depends="test-origin, test-target, test-wayf" />
+       <target name="test-origin" depends="test-common" />
+       <target name="test-target" depends="test-common" />
+       <target name="test-wayf" depends="test-common" />
+       <target name="test-common" depends="compile-all">
+               <junit printsummary="no" fork="no" haltonfailure="yes" haltonerror="no">
+                       <classpath refid="build.path" />
                        <formatter type="plain" />
                        <formatter type="plain" />
-                       <test name="edu.internet2.middleware.shibboleth.common.AQHTest" />
+               <!--    <test name="edu.internet2.middleware.shibboleth.common.AQHTest" /> -->
                </junit>
        </target>
                </junit>
        </target>
-       
 
 </project>
 
 
 </project>