1 Star 0 Fork 0

binbin.a.zhang/cas-myself

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.xml 5.67 KB
一键复制 编辑 原始数据 按行查看 历史
binbin.a.zhang 提交于 2018-05-25 10:01 . cas-server-myself
<?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="cas.management.webapp" value="cas-management" />
<property name="catalina.home" value="c:/portal/apache-tomcat" />
<property name="tomcat.log.patterns" value="**/*.log, **/*.txt" />
<property name="cas.build.modules" value="cas-management-webapp" />
<!--
<property name="cas.build.modules" value="cas-server-core,cas-server-webapp-support,cas-server-webapp,cas-management-webapp" />
-->
<taskdef resource="net/sf/antcontrib/antcontrib.properties" />
<!-- ******************* 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}/webapps/${cas.management.webapp}.war" verbose="false" failonerror="true" />
<delete file="${catalina.home}/bin/${ant.project.name}.log" verbose="false" failonerror="true" />
<delete dir="${catalina.home}/webapps/${cas.management.webapp}" verbose="false" includeemptydirs="true" failonerror="true" />
<delete dir="${catalina.home}/webapps/${ant.project.name}" 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="--projects" />
<arg value="${cas.build.modules}"/>
<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="--projects" />
<arg value="${cas.build.modules}"/>
<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="--projects" />
<arg value="${cas.build.modules}"/>
<arg value="test" />
</exec>
</target>
<target name="copy" description="Copy artifacts over to tomcat" depends="package">
<copy overwrite="true"
todir="${catalina.home}\webapps"
file="cas-server-webapp/target/${ant.project.name}.war"
verbose="true"
/>
<copy overwrite="true"
todir="${catalina.home}\webapps"
file="cas-management-webapp/target/${cas.management.webapp}.war"
verbose="true"
/>
</target>
<target name="package" description="Package src artifacts and prepare for deployment" depends="clean">
<exec dir="${basedir}" executable="${mavenExecutable}">
<arg value="-T 5" />
<arg value="--projects" />
<arg value="${cas.build.modules}"/>
<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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/binbin_z/cas-myself.git
[email protected]:binbin_z/cas-myself.git
binbin_z
cas-myself
cas-myself
master

搜索帮助