-<!-- Main build configutaion for Shibboleth java components - Walter Hoehn 06/04/2002 -->
-
-<project name="Shibboleth" default="install" basedir=".">
-
- <!-- Set global properties for this build -->
- <property name="distnameWayf" value="shibboleth-wayf" />
- <property name="root" value="." />
- <property name="src" value="${root}/src/" />
- <property name="tests" value="${root}/tests/" />
- <property name="approot" value="${root}/webApplication/" />
- <property name="appconfig" value="${src}/conf/" />
- <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="endorsed" value="${root}/endorsed/" />
- <property name="distlibs" value="${root}/lib/" />
- <property name="custom" value="${root}/custom/" />
- <property name="dist" value="${root}/dist/" />
- <property name="docs" value="${root}/doc/" />
- <property name="javadocs" value="${docs}/api/" />
-
- <property name="year" value="2002-2005"/>
- <property name="copyright" value="Copyright © ${year} UCAID. All Rights Reserved."/>
-
-
- <!-- antcontrib tasks -->
- <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${buildlibs}/ant-contrib.jar"/>
-
-
- <!-- Construct the CLASSPATH -->
- <path id="build.path">
- <pathelement path="${classpath}" />
- <pathelement location="${build}" />
- <fileset dir="${custom}">
- <include name="**/*.jar" />
- </fileset>
- <fileset dir="${endorsed}">
- <include name="**/*.jar" />
- </fileset>
- <fileset dir="${libdir}">
- <include name="**/*.jar" />
- </fileset>
- <fileset dir="${buildlibs}">
- <include name="**/*.jar" />
- </fileset>
- </path>
+<project name="Shibboleth Identity Provider" basedir="." default="install">
+ <!-- User based property file that overrides any property below -->
+ <property file="${user.name}-build.properties" />
- <!-- Prepare directory structure for project build-->
- <target name="init">
- <mkdir dir="${build}" />
- <mkdir dir="${dist}" />
+ <!-- Project based property file -->
+ <property file="build.properties" />
- <if>
- <not> <available file="build.properties" /> </not>
- <then>
- <copy file="conf/default.build.properties" tofile="build.properties" />
- </then>
- </if>
+ <!-- Installation specific property file -->
+ <property file="install.properties" />
- <property file="build.properties" />
- </target>
+ <!-- Load ant-contrib tasks -->
+ <taskdef resource="net/sf/antcontrib/antlib.xml" />
+ <!-- Load Internet2 ant extensions -->
+ <taskdef resource="edu/internet2/middleware/ant/antlib.xml" />
- <!-- This target should be run before checking code into the repository -->
- <target name="pre-checkin" depends="compile, test-all, clean-all" />
+ <!-- Load Checkstyle tasks -->
+ <taskdef resource="checkstyletask.properties" />
+ <!-- Classpath for building core classes-->
+ <path id="build-path">
+ <fileset dir="${build-lib.dir}" includes="**/*.jar" />
+ <fileset dir="${lib.dir}" includes="**/*.jar" />
+ </path>
- <!-- Compile classes and move them to ${build} -->
- <target name="compile" depends="init"
- description="Compile source files">
- <!-- Compile the shib code into the build path -->
- <javac srcdir="${src}" destdir="${build}" includes="**/*.java" debug="on" source="1.4">
- <classpath refid="build.path" />
- </javac>
- <!-- Compile site-specific code into the build path -->
- <javac srcdir="${custom}" destdir="${build}" includes="**/*.java" debug="on" source="1.4">
- <classpath refid="build.path" />
- </javac>
- <!-- Copy xml schemas to the build path -->
- <copy todir="${build}/schemas">
- <fileset dir="${src}/schemas"/>
- </copy>
- <!-- Copy any site-specific jars to the build path -->
- <copy todir="${libdir}">
- <fileset dir="${custom}" includes="**/*.jar" />
- </copy>
+ <!-- Classpath for testing classes-->
+ <path id="test-path">
+ <path refid="build-path" />
+ <pathelement location="${core-classes.dir}" />
+ <pathelement location="${core-src.dir}" />
+ <pathelement location="${test-classes.dir}" />
+ <pathelement location="${test-classes.dir}/data" />
+ <pathelement location="${test-classes.dir}/log4j.xml" />
+ <pathelement location="${test-src.dir}" />
+ <pathelement location="${classpathres.dir}" />
+ </path>
+
+ <!-- Prepare directory structure for build -->
+ <target name="build-init">
+ <mkdir dir="${build.dir}" />
</target>
+ <!-- Compile core (non-test) classes -->
+ <target name="compile-core" depends="build-init, clean-compile">
+ <mkdir dir="${core-prep-source.dir}" />
+ <mkdir dir="${core-classes.dir}" />
+
+ <copy todir="${core-prep-source.dir}" preservelastmodified="true">
+ <fileset dir="${core-src.dir}" />
+ <filterset begintoken="$" endtoken="$">
+ <filter token="IDP_HOME" value="${idp.home}" />
+ <filter token="IDP_VERSION" value="${version}" />
+ </filterset>
+ </copy>
- <!-- Generate API docs -->
- <target name="javadocs">
- <mkdir dir="${docs}" />
- <mkdir dir="${javadocs}" />
- <javadoc packagenames='edu.internet2.middleware.*'
- sourcepath='${src}' destdir='${javadocs}'
- author='true' version='true'
- windowtitle='Shibboleth Java API' doctitle='Shibboleth Java API'
- bottom='${copyright}'>
- <classpath refid="build.path" />
- </javadoc>
- </target>
+ <javac srcdir="${core-prep-source.dir}"
+ destdir="${core-classes.dir}"
+ includes="**/*.java"
+ debug="on"
+ source="1.5">
+ <classpath refid="build-path" />
+ </javac>
+ <delete dir="${core-prep-source.dir}" />
- <!-- Build command-line utilities -->
- <target name="build-util" depends="compile">
- <jar jarfile="${distlibs}/shib-util.jar" basedir="${build}" />
</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, clean-javadocs, clean-util" />
- <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">
- <delete dir="${dist}" />
- </target>
- <target name="clean-javadocs">
- <delete dir="${javadocs}" />
- </target>
- <target name="clean-util">
- <delete>
- <fileset dir="${buildlibs}">
- <include name="shib-util.jar" />
- </fileset>
- </delete>
- </target>
- <!-- For IDE development, run this target first to delete all
- directories generated by the install process before
- recreating and reinstalling everything. -->
- <target name="clean-install" depends="init"
- description="Delete old configuration and Tomcat webapp directories.">
- <delete dir="${idp.home}" />
- <delete dir="${sp.home}" />
- <delete dir="${tomcat.home}/webapps/${idp.webapp.name}" />
- <delete dir="${tomcat.home}/webapps/${sp.webapp.name}" />
- </target>
-
-
- <!-- Add to the classpath for unit tests -->
- <path id="test.path">
- <path refid="build.path"/>
- <pathelement location="${tests}"/>
- </path>
+ <!-- Compile unit test classes -->
+ <target name="compile-test" depends="compile-core">
+ <mkdir dir="${test-classes.dir}" />
- <!-- Compile classes needed for unit testing -->
- <target name="compile-tests" depends="compile">
- <javac srcdir="${tests}" destdir="${build}" includes="**/*.java" debug="on" source="1.4">
- <classpath refid="build.path" />
+ <javac srcdir="${test-src.dir}" destdir="${test-classes.dir}" includes="**/*.java" debug="on" source="1.5">
+ <classpath refid="test-path" />
</javac>
- </target>
- <!-- Run automated tests on compiled code -->
- <target name="test-all" depends="test-IdP, test-SP" />
-
- <target name="test-IdP" depends="compile-tests">
- <junit printsummary="no" fork="yes" haltonfailure="yes" haltonerror="yes" dir="${root}">
- <jvmarg value="-Djava.endorsed.dirs=${endorsed}" />
- <classpath refid="test.path" />
- <formatter type="plain" />
- <test name="edu.internet2.middleware.shibboleth.aa.arp.ArpTests" />
- <test name="edu.internet2.middleware.shibboleth.aa.attrresolv.ResolverTests" />
- <test name="edu.internet2.middleware.shibboleth.common.CredentialsTests" />
- <test name="edu.internet2.middleware.shibboleth.common.provider.NameMapperTests" />
- <test name="edu.internet2.middleware.shibboleth.common.TrustTests" />
- <test name="edu.internet2.middleware.shibboleth.idp.provider.DNHostNameExtractionTests" />
- <test name="edu.internet2.middleware.shibboleth.metadata.MetadataTests" />
- </junit>
</target>
- <target name="test-SP" depends="compile-tests">
- <junit printsummary="no" fork="yes" haltonfailure="yes" haltonerror="yes" dir="${root}">
- <jvmarg value="-Djava.endorsed.dirs=${endorsed}" />
- <classpath refid="test.path" />
- <formatter type="plain" />
- <test name="edu.internet2.middleware.shibboleth.aap.AAPTests" />
+ <!-- Compile and run unit tests -->
+ <target name="test" depends="compile-core, compile-test" description="Runs the unit tests for the project.">
+ <mkdir dir="${test-results.dir}" />
+
+ <echo message="Excuting unit tests using endorsed directory ${java.endorsed.dirs}" />
+ <junit printsummary="off"
+ fork="yes"
+ forkmode="once"
+ haltonerror="false"
+ haltonfailure="false"
+ dir="${basedir}"
+ errorproperty="testFailed">
+ <jvmarg value="-Djava.endorsed.dirs=${java.endorsed.dirs}" />
+ <classpath refid="test-path" />
+ <formatter type="xml" />
+ <batchtest todir="${test-results.dir}">
+ <fileset dir="${test-classes.dir}">
+ <include name="**/*Test.class" />
+ </fileset>
+ </batchtest>
</junit>
- </target>
-
+ <junitreport todir="${test-results.dir}">
+ <fileset dir="${test-results.dir}">
+ <include name="TEST-*.xml" />
+ </fileset>
+ <report format="frames" todir="${test-report.dir}" />
+ </junitreport>
- <!-- Tomcat Management -->
- <target name="setupTomcatTasks">
- <path id="tomcat.classpath">
- <fileset dir="${tomcat.home}/server/lib" includes="catalina-ant.jar"/>
- </path>
-
- <taskdef name="tomcatStart" classname="org.apache.catalina.ant.StartTask" classpathref="tomcat.classpath"/>
- <taskdef name="tomcatStop" classname="org.apache.catalina.ant.StopTask" classpathref="tomcat.classpath"/>
- <taskdef name="tomcatDeploy" classname="org.apache.catalina.ant.DeployTask" classpathref="tomcat.classpath"/>
- <taskdef name="tomcatUndeploy" classname="org.apache.catalina.ant.UndeployTask" classpathref="tomcat.classpath"/>
- </target>
-
- <target name="tomcat.start" depends="setupTomcatTasks" description="Start a deployed webapp using Tomcat manager">
- <tomcatStart url="${tomcat.url}" username="${tomcat.username}" password="${tomcat.password}" path="/${idp.webapp.name}"/>
+ <echo message="Test report available at ${test-report.dir}/index.html" />
+ <fail if="testFailed" message="Test failure; see ${test-report.dir}/index.html for more information." />
</target>
- <target name="tomcat.stop" depends="setupTomcatTasks" description="Stop a deployed webapp using Tomcat manager">
- <tomcatStop url="${tomcat.url}" username="${tomcat.username}" password="${tomcat.password}" path="/${idp.webapp.name}"/>
+ <!-- Javadoc core (non-test) classes -->
+ <target name="javadoc" description="Creates the JavaDoc documentatin for the project.">
+ <mkdir dir="${javadoc.dir}" />
+ <javadoc packagenames="org.opensaml.*"
+ sourcepath="${core-src.dir}"
+ destdir="${javadoc.dir}"
+ author="false"
+ version="true"
+ windowtitle="${ant.project.name} ${version} Java API"
+ doctitle="${ant.project.name} ${version} Java API"
+ bottom="${copyright}"
+ overview="${core-src.dir}/overview.html">
+ <classpath refid="build-path" />
+ </javadoc>
</target>
- <target name="tomcat.deploy" depends="setupTomcatTasks" description="Upload and deploy using Tomcat manager">
- <tomcatDeploy url="${tomcat.url}" username="${tomcat.username}" password="${tomcat.password}" path="/${idp.webapp.name}"
- war="file:${basedir}/${dist}/${idp.webapp.name}.war"/>
+ <!-- Removes previously compiled files -->
+ <target name="clean-compile">
+ <delete dir="${build.dir}" />
+ <delete dir="${dist.dir}" />
</target>
- <target name="tomcat.undeploy" depends="setupTomcatTasks" description="Undeploy using Tomcat manager">
- <tomcatUndeploy url="${tomcat.url}" username="${tomcat.username}" password="${tomcat.password}" path="/${idp.webapp.name}"/>
- </target>
-
-
- <!-- Automated key generation for crypto handles -->
- <target name="genSecret" depends="compile">
- <taskdef name="genSecret" classname="edu.internet2.middleware.shibboleth.utils.HandleRepositorySecretGenerator" classpathref="build.path"/>
- <genSecret keyStorePath="${appconfig}/handle.jks" keyStorePassword="shibhs" keyStoreKeyAlias="handleKey" keyStoreKeyPassword="shibhs" />
- </target>
-
-
- <!-- Generate salt for use with targetted id -->
- <target name="genSalt" depends="compile">
- <taskdef name="genSalt" classname="edu.internet2.middleware.shibboleth.utils.HandleRepositorySecretGenerator" classpathref="build.path"/>
- <genSalt keyStorePath="${appconfig}/persistent.jks" keyStorePassword="shibhs" keyStoreKeyAlias="handleKey" keyStoreKeyPassword="shibhs" />
- </target>
-
- <target name="exampleCertificates">
- <!--
- This target provides an example of the generation of
- self-signed Certificates for the IdP and SP. You may
- change the cn= and use it to generate new identities
- when you want to replace "example.org" with your real
- organization dns. However,the generated key and
- certificate also have to be defined to the Credentials
- of the IdP and SP config files and added to the Metadata.
- -->
- <genkey alias="tomcat" storepass="exampleorg"
- keystore="${tomcat.home}/conf/idp-example.jks"
- keyalg="RSA" validity="365"
- dname="cn=idp.example.org, o=example.org, c=US"
- />
- <genkey alias="tomcat" storepass="exampleorg"
- keystore="${tomcat.home}/conf/sp-example.jks"
- keyalg="RSA" validity="365"
- dname="cn=sp.example.org, o=example.org, c=US"
- />
- </target>
-
-
- <!-- Package Shibboleth -->
- <target name="package-idp" depends="compile" description="Creates the IdP war file and moves it to ${dist}">
- <!-- copy values to deployment descriptor -->
- <copy file="${configroot}/${idp.deployment.descriptor}" tofile="${configroot}/idp.xml" overwrite="true" />
- <replace file="${configroot}/idp.xml" token="$SHIB_HOME$" value="${idp.home.url}" />
-
- <!-- create the war -->
- <war warfile="${dist}/${idp.webapp.name}.war" webxml="${configroot}/idp.xml" basedir="${approot}" update="no" />
-
- <!-- clean up generated descriptor -->
- <delete file="${configroot}/idp.xml"/>
- </target>
-
- <target name="package-wayf" depends="compile" description="Creates the WAYF war and moves it to ${dist}">
- <war warfile="${dist}/${distnameWayf}.war" webxml="${configroot}/wayf.xml" basedir="${approot}" update="no" />
- </target>
-
- <target name="package-sp" depends="compile" description="Creates the Java SP war and moves it to ${dist}">
- <!-- copy values to deployment descriptor -->
- <copy file="${configroot}/${sp.deployment.descriptor}" tofile="${configroot}/sp.xml" overwrite="true" />
- <replace file="${configroot}/sp.xml" token="$SHIB_HOME$" value="${sp.home.url}" />
-
- <!-- create the war -->
- <war warfile="${dist}/${sp.webapp.name}.war" webxml="${configroot}/sp.xml" basedir="${approot}" update="no" />
-
- <!-- clean up generated descriptor -->
- <delete file="${configroot}/sp.xml"/>
- </target>
-
-
- <!-- Install Shibboleth -->
- <target name="install.init">
- <taskdef name="xinput" classname="edu.internet2.middleware.shibboleth.utils.ant.XInput" classpath="${build}" />
- <typedef name="xoption" classname="edu.internet2.middleware.shibboleth.utils.ant.XInputOption" classpath="${build}" />
+ <!-- Removes all build generated content -->
+ <target name="clean" depends="clean-compile" description="Removes any artifact produced by the build process.">
+ <delete dir="${javadoc.dir}" />
+ <delete dir="${reports.dir}" />
+ <delete dir="${dist.dir}" />
</target>
- <target name="install.url">
- <taskdef name="urlconvert" classname="edu.internet2.middleware.shibboleth.utils.ant.URLConvert" classpath="${build}"/>
- <urlconvert path="${idp.home}" addProperty="idp.home.url"/>
- <urlconvert path="${sp.home}" addProperty="sp.home.url"/>
- </target>
+ <!-- Create JAR file -->
+ <target name="package" depends="compile-core" description="Creates the project library jar file.">
+ <mkdir dir="${dist.dir}" />
- <target name="install" depends="init, install.init" description="Install Shibboleth">
- <if>
- <xinput type="confirm" defaultvalue="y">Do you want to install the Shibboleth Identity Provider?</xinput>
- <then>
- <input message="What name do you want to use for the Identity Provider web application? [default: ${idp.webapp.name}]"
- addproperty="idp.webapp.name.input" defaultValue="${idp.webapp.name}" />
- <var name="idp.webapp.name" value="${idp.webapp.name.input}" />
+ <jar destfile="${dist.dir}/${jar.name}" whenempty="fail">
+ <fileset dir="${classpathres.dir}" />
+ <zipfileset dir="${metainf.dir}" prefix="META-INF/" />
+ <zipfileset dir="${core-classes.dir}" />
+ </jar>
- <antcall target="install.idp" />
- </then>
- </if>
</target>
- <target name="install.idp" depends="init, install.init">
- <xinput message="Deploying the java web application. Do you want to install it directly onto the filesystem or use the tomcat manager application?"
- addproperty="idp.install-type.input" type="menu" casesensitive="no" defaultValue="${idp.install-type}">
- <xoption value="filesystem.prompt">filesystem</xoption>
- <xoption>manager</xoption>
- </xinput>
- <var name="idp.install-type" value="${idp.install-type.input}" />
-
- <antcall target="install.idp.${idp.install-type}" />
- </target>
+ <target name="install" description="Installs the identity provider software.">
+ <input message="Is this a new installation? Answering yes will overwrite your current configuration. [yes|no]"
+ addproperty="new.install"
+ defaultvalue="no" />
- <!-- Prompt user for filesystem installation options and save them to build.properties -->
- <target name="install.idp.filesystem.prompt" depends="init, install.init">
- <input message="Select an installation base for the Shibboleth Identity Provider [default: ${idp.home}]"
- addproperty="idp.home.input" defaultvalue="${idp.home}" />
- <var name="idp.home" value="${idp.home.input}" />
- <input message="Enter tomcat home directory [default: ${tomcat.home}]"
- addproperty="tomcat.home.input" defaultvalue="${tomcat.home}" />
- <var name="tomcat.home" value="${tomcat.home.input}" />
-
<if>
- <available file="${idp.home}/etc" />
+ <equals arg1="${new.install}" arg2="yes" />
<then>
- <xinput type="confirm" addproperty="copy-idp-conf">WARNING!! The directory `${idp.home}${file.separator}etc` already exists. Do you want to overwrite the existing configuration?</xinput>
+ <input message="Where should the Shibboleth Identity Provider software be installed? [default: ${idp.home}]"
+ addproperty="idp.home.input"
+ defaultvalue="${idp.home}" />
+ <var name="idp.home" value="${idp.home.input}" />
+
+ <input message="What is the hostname of the Shibboleth Identity Provider server? [default: ${idp.hostname}]"
+ addproperty="idp.hostname.input"
+ defaultvalue="${idp.hostname}" />
+ <var name="idp.hostname" value="${idp.hostname.input}" />
+
+ <input message="A keystore is about to be generated for you. Please enter a password that will be used to protect it."
+ addproperty="idp.keystore.pass" />
+
+ <propertyfile file="install.properties">
+ <entry key="idp.home" value="${idp.home.input}" />
+ <entry key="idp.hostname" value="${idp.hostname.input}" />
+ </propertyfile>
+
+ <mkdir dir="${idp.home}" />
+ <mkdir dir="${idp.home}/bin" />
+ <mkdir dir="${idp.home}/conf" />
+ <mkdir dir="${idp.home}/credentials" />
+ <mkdir dir="${idp.home}/lib" />
+ <mkdir dir="${idp.home}/logs" />
+ <mkdir dir="${idp.home}/metadata" />
+ <mkdir dir="${idp.home}/war" />
+
+ <var name="idp.entity.id" value="https://${idp.hostname}/idp/shibboleth" />
+
+ <regexSplit input="${idp.hostname}" regex="^.*\.(.*\..*$)" addproperty="idp.scope" />
+
+ <echo message="Generating signing and encryption key, certificate, and keystore. " />
+ <selfSignedCert hostname="${idp.hostname}"
+ privateKeyFile="${idp.home}/credentials/idp.key"
+ certificateFile="${idp.home}/credentials/idp.crt"
+ keystoreFile="${idp.home}/credentials/idp.jks"
+ keystorePassword="${idp.keystore.pass}" />
+
+ <copy todir="${idp.home}/bin" preservelastmodified="true">
+ <fileset dir="${tools.dir}" />
+ <filterset begintoken="$" endtoken="$">
+ <filter token="IDP_HOME" value="${idp.home}" />
+ <filter token="IDP_VERSION" value="${version}" />
+ </filterset>
+ </copy>
+ <chmod file="${idp.home}/bin/*.sh" perm="+x" />
+
+ <copy todir="${idp.home}/conf" preservelastmodified="true" overwrite="true">
+ <fileset dir="${conf.dir}" />
+ <filterset begintoken="$" endtoken="$">
+ <filter token="IDP_HOME" value="${idp.home}" />
+ <filter token="IDP_VERSION" value="${version}" />
+ <filter token="IDP_ENTITY_ID" value="${idp.entity.id}" />
+ <filter token="IDP_SCOPE" value="${idp.scope}" />
+ <filter token="IDP_CERTIFICATE" value="${idp.cert}" />
+ <filter token="IDP_HOSTNAME" value="${idp.hostname}" />
+ </filterset>
+ </copy>
+
+ <stringFromFile input="${idp.home}/credentials/idp.crt" addProperty="idp.cert" />
+ <regexSplit input="${idp.cert}"
+ regex="\A.*-----\s((?:.*\s)*)-----END.*\Z"
+ addproperty="idp.metadata.cert" />
+ <copy todir="${idp.home}/metadata" preservelastmodified="true" overwrite="true">
+ <fileset dir="${metadata.dir}" />
+ <filterset begintoken="$" endtoken="$">
+ <filter token="IDP_ENTITY_ID" value="${idp.entity.id}" />
+ <filter token="IDP_SCOPE" value="${idp.scope}" />
+ <filter token="IDP_CERTIFICATE" value="${idp.metadata.cert}" />
+ <filter token="IDP_HOSTNAME" value="${idp.hostname}" />
+ </filterset>
+ </copy>
</then>
- <else>
- <property name="copy-idp-conf" value="y" />
- </else>
</if>
- <antcall target="install.idp.filesystem" />
- <antcall target="savePropertyFile" />
- </target>
-
- <!-- Install Shibboleth IdP to filesystem using the properties in build.properties -->
- <target name="install.idp.filesystem" depends="init, install.init, build-util, install.url, package-idp"
- description="Install Shibboleth IdP to filesystem using the properties in build.properties">
-
- <!-- Move IdP war to Tomcat deployment directory -->
- <copy file="${dist}/${idp.webapp.name}.war" tofile="${tomcat.home}/webapps/${idp.webapp.name}.war" />
-
- <!-- copy IdP jars and utilities -->
- <copy todir="${idp.home}/lib">
- <fileset dir="lib" includesfile="conf/idp-lib.include" />
+ <copy todir="${idp.home}/lib" preservelastmodified="true">
+ <fileset dir="${lib.dir}" />
+ <fileset file="${dist.dir}/${jar.name}" />
+ <fileset file="${build-lib.dir}/servlet-2.4.jar" />
</copy>
- <copy todir="${idp.home}/bin">
- <fileset dir="bin"/>
+ <copy todir="${webinf-temp.dir}">
+ <fileset dir="${webinf.dir}" />
+ <filterset begintoken="$" endtoken="$">
+ <filter token="IDP_HOME" value="${idp.home}" />
+ <filter token="IDP_VERSION" value="${version}" />
+ </filterset>
</copy>
- <chmod dir="${idp.home}/bin" perm="ug+rx" includes="**/*"/>
-
- <mkdir dir="${idp.home}/logs" />
- <!-- copy IdP configuration -->
- <if>
- <or>
- <equals arg1="${copy-idp-conf}" arg2="y" />
- <not> <available file="${idp.home}/etc" /> </not>
- </or>
- <then>
- <delete dir="${idp.home}/etc" />
- <antcall target="install.idp.filesystem.config" />
- </then>
- </if>
+ <jar destfile="${idp.home}/war/${war.name}" whenempty="fail">
+ <zipfileset dir="${webinf-temp.dir}" prefix="WEB-INF/" />
+ <zipfileset dir="${webpages.dir}" prefix="" />
+ <zipfileset dir="${lib.dir}" prefix="WEB-INF/lib/" />
+ <zipfileset file="${dist.dir}/${jar.name}" prefix="WEB-INF/lib/" />
+ </jar>
</target>
- <!-- Install Shibboleth SP to filesystem using the properties in build.properties -->
- <target name="install.sp.filesystem" depends="init, install.init, build-util, install.url, package-sp"
- description="Install Shibboleth SP to filesystem using the properties in build.properties">
- <!-- Move SP war to Tomcat deployment directory -->
- <copy file="${dist}/${sp.webapp.name}.war" tofile="${tomcat.home}/webapps/${sp.webapp.name}.war" />
+ <!-- **************************************************************** -->
+ <!-- *** *** -->
+ <!-- *** Developer Tasks *** -->
+ <!-- *** *** -->
+ <!-- **************************************************************** -->
- <!-- copy sp jars and utilities -->
- <copy todir="${sp.home}/lib">
- <fileset dir="lib" includesfile="conf/idp-lib.include" />
- </copy>
-
- <copy todir="${sp.home}/bin">
- <fileset dir="bin"/>
- </copy>
- <chmod dir="${sp.home}/bin" perm="ug+rx" includes="**/*"/>
-
- <mkdir dir="${sp.home}/logs" />
+ <!-- Checks code against style guidelines -->
+ <target name="checkstyle" description="Developer task: Produces coding standard compliance report.">
+ <mkdir dir="${reports.dir}" />
- <!-- copy sp configuration -->
- <if>
- <or>
- <equals arg1="${copy-sp-conf}" arg2="y" />
- <not> <available file="${sp.home}/etc" /> </not>
- </or>
- <then>
- <delete dir="${sp.home}/etc" />
- <antcall target="install.sp.filesystem.config" />
- </then>
- </if>
- </target>
-
-
- <!-- copy shibboleth configuration to $SHIB_HOME/etc, overwriting any existing configuration -->
- <target name="install.idp.filesystem.config" depends="init, install.init, install.url">
- <mkdir dir="${idp.home}/etc" />
- <copy todir="${idp.home}/etc" overwrite="true">
- <fileset dir="${src}/conf" includesfile="conf/idp-conf.include"/>
- </copy>
- <move file="${idp.home}/etc/dist.idp.xml" tofile="${idp.home}/etc/idp.xml" overwrite="true" />
- <replace file="${idp.home}/etc/idp.xml" token="$SHIB_HOME$" value="${idp.home.url}" />
- </target>
-
- <!-- copy SP configuration to $SHIB_HOME$/etc, overwriting any existing configuration -->
- <target name="install.sp.filesystem.config" depends="init, install.init">
- <mkdir dir="${sp.home}/etc" />
- <copy todir="${sp.home}/etc" overwrite="true">
- <fileset dir="${src}/conf" includesfile="conf/sp-conf.include"/>
- </copy>
- <move file="${sp.home}/etc/dist.sp.xml" tofile="${sp.home}/etc/sp.xml" overwrite="true" />
- <replace file="${sp.home}/etc/sp.xml" token="$SHIB_HOME$" value="${sp.home.url}" />
+ <checkstyle config="${basedir}/checkstyle.xml" failOnViolation="false" classpathref="build-path">
+ <fileset dir="src" includes="**/*.java" />
+ <formatter type="plain" toFile="${reports.dir}/checkstyle-report.txt" />
+ </checkstyle>
</target>
- <!-- install Shibboleth-IdP war using tomcat's manager app -->
- <target name="install.idp.manager" depends="init, install.init">
- <antcall target="setupTomcatTasks" />
-
- <input message="Enter local tomcat directory [default: ${tomcat.home}]" addproperty="tomcat.home.input" defaultValue="${tomcat.home}" />
- <var name="tomcat.home" value="${tomcat.home.input}" />
-
- <input message="Enter tomcat url [default: ${tomcat.url}]" addproperty="tomcat.url.input" defaultValue="${tomcat.url}" />
- <var name="tomcat.url" value="${tomcat.url.input}" />
-
- <input message="Enter tomcat username [default: ${tomcat.username}]" addproperty="tomcat.username.input" defaultValue="${tomcat.username}" />
- <var name="tomcat.username" value="${tomcat.username.input}" />
-
- <input message="Enter tomcat password [default: ${tomcat.password}]" addproperty="tomcat.password.input" defaultValue="${tomcat.password}" />
- <var name="tomcat.password" value="${tomcat.password.input}" />
-
- <antcall target="tomcat.deploy" />
- <antcall target="savePropertyFile" />
- </target>
-
- <!-- save configuration to build.properties -->
- <target name="savePropertyFile">
- <propertyfile file="build.properties">
- <entry key="idp.home" value="${idp.home}" />
- <entry key="sp.home" value="${sp.home}" />
- <entry key="idp.webapp.name" value="${idp.webapp.name}" />
- <entry key="sp.webapp.name" value="${sp.webapp.name}" />
- <entry key="idp.install-type" value="${idp.install-type}" />
- <entry key="tomcat.home" value="${tomcat.home}" />
- <entry key="tomcat.url" value="${tomcat.url}" />
- <entry key="tomcat.username" value="${tomcat.username}" />
- <entry key="tomcat.password" value="${tomcat.password}" />
- </propertyfile>
- </target>
</project>