--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/authserver/casserver/simple-cas4-overlay-template/build.xml Wed Apr 01 15:31:12 2015 +0200
@@ -0,0 +1,139 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Licensed to Jasig under one or more contributor license
+ agreements. See the NOTICE file distributed with this work
+ for additional information regarding copyright ownership.
+ Jasig licenses this file to you under the Apache License,
+ Version 2.0 (the "License"); you may not use this file
+ except in compliance with the License. You may obtain a
+ copy of the License at the following location:
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+
+-->
+<project name="cas" default="deploy" basedir=".">
+
+ <!-- ******************* PROPERTIES ************************* -->
+ <property environment="env" />
+ <property name="build.target.dir" value="target" />
+
+ <property name="catalina.home" value="${env.CATALINA_HOME}" />
+ <property name="tomcat.log.patterns" value="**/*.log, **/*.txt" />
+ <taskdef resource="net/sf/antcontrib/antcontrib.properties" />
+ <property name="cas.resources.dir" value="/etc/cas" />
+
+ <!-- ******************* MAVEN PROPERTIES******************** -->
+ <condition property="mavenExecutableFile" value="mvn.bat" else="mvn">
+ <os family="windows" />
+ </condition>
+ <var name="mavenExecutable" value="${env.M2_HOME}\bin\${mavenExecutableFile}"/>
+ <available file="${mavenExecutable}" property="maven.exec.exists" />
+
+ <if>
+ <not>
+ <isset property="${maven.exec.exists}" />
+ </not>
+ <then>
+ <var name="mavenExecutable" value="${env.MAVEN_HOME}\bin\${mavenExecutableFile}"/>
+ <available file="${mavenExecutable}" property="maven.exec.exists" />
+ </then>
+ </if>
+ <fail unless="${maven.exec.exists}" message="Cannot determine the maven installation location through M2_HOME or MAVEN_HOME environment variables."/>
+
+ <!-- ***************** TOMCAT PROPERTIES ******************** -->
+ <condition property="tomcatStartupFile" value="startup.bat" else="startup">
+ <os family="windows" />
+ </condition>
+ <property name="tomcatStartup" value="${catalina.home}\bin\${tomcatStartupFile}" />
+
+ <condition property="tomcatShutDownFile" value="shutdown.bat" else="shutdown">
+ <os family="windows" />
+ </condition>
+ <property name="tomcatShutDown" value="${catalina.home}\bin\${tomcatShutDownFile}" />
+
+ <!-- ********************* TARGETS *************************** -->
+ <target name="cleanTomcatLogs" description="Clean tomcat log files">
+ <delete failonerror="false">
+ <fileset dir="${catalina.home}/logs" includes="${tomcat.log.patterns}" />
+ <fileset dir="${catalina.home}/bin" includes="${tomcat.log.patterns}" />
+ <fileset dir="${catalina.home}" includes="${tomcat.log.patterns}" />
+ </delete>
+ </target>
+
+ <target name="clean" description="Clean deployed artifacts and logs">
+ <delete file="${catalina.home}/webapps/${ant.project.name}.war" verbose="false" failonerror="true" />
+ <delete file="${catalina.home}\conf\Catalina\localhost\cas.xml" verbose="false" failonerror="true" />
+ <delete file="${catalina.home}/bin/${ant.project.name}.log" verbose="false" failonerror="true" />
+
+ <delete dir="${catalina.home}/webapps/${ant.project.name}" verbose="false" includeemptydirs="true" failonerror="true" />
+ <delete file="${catalina.home}/webapps/cas-management.war" verbose="false" includeemptydirs="true" failonerror="true" />
+ <delete dir="${catalina.home}/webapps/cas-management" verbose="false" includeemptydirs="true" failonerror="true" />
+ <delete dir="/etc/cas/log" verbose="false" includeemptydirs="true" failonerror="true" />
+
+ <delete dir="${catalina.home}/work/Catalina" verbose="false" includeemptydirs="true" failonerror="true"/>
+
+
+ <exec dir="${basedir}" executable="${mavenExecutable}">
+ <arg value="clean" />
+ <arg value="-Dmaven.test.skip=true" />
+ </exec>
+ <antcall target="cleanTomcatLogs" />
+ </target>
+
+ <target name="compile" description="Compile artifacts" depends="clean">
+ <exec dir="${basedir}" executable="${mavenExecutable}">
+ <arg value="compile" />
+ <arg value="-Dmaven.test.skip=true" />
+ </exec>
+ </target>
+
+ <target name="test" description="Compile artifacts and run tests" depends="clean">
+ <exec dir="${basedir}" executable="${mavenExecutable}">
+ <arg value="test" />
+ </exec>
+ </target>
+
+ <target name="copy" description="Copy artifacts over to tomcat" depends="package">
+ <copy overwrite="true"
+ todir="${catalina.home}\webapps"
+ file="target/${ant.project.name}.war"
+ verbose="true"
+ />
+
+ <mkdir dir="${cas.resources.dir}" />
+ <copy overwrite="true" verbose="true" todir="${cas.resources.dir}" flatten="true">
+ <fileset dir="${basedir}/etc" includes="*.conf" />
+ </copy>
+ <copy overwrite="true" verbose="true" todir="${cas.resources.dir}" flatten="true">
+ <fileset dir="${basedir}/etc" includes="*.xml" />
+ </copy>
+ <copy overwrite="true" verbose="true" todir="${cas.resources.dir}" flatten="true">
+ <fileset dir="${basedir}/etc" includes="*.properties" />
+ </copy>
+
+ </target>
+
+ <target name="package" description="Package src artifacts and prepare for deployment" depends="clean">
+ <exec dir="${basedir}" executable="${mavenExecutable}">
+ <arg value="install" />
+ <arg value="-Dmaven.test.skip=true" />
+ </exec>
+ </target>
+
+
+ <target name="deploy" depends="copy" description="Clean, package and deploy artifacts" />
+
+ <target name="help" description="Prints instructions on how to run the build.">
+ <echo message="Use 'ant -projecthelp' to see all available commands" />
+ </target>
+
+</project>
+