small variable rename in ant file
This commit is contained in:
parent
d79d9a98e6
commit
95ad754bc2
1 changed files with 4 additions and 4 deletions
|
|
@ -8,9 +8,9 @@
|
||||||
<property name="srcDir" value="${gitRoot}/src" />
|
<property name="srcDir" value="${gitRoot}/src" />
|
||||||
<property name="libDir" value="${gitRoot}/lib" />
|
<property name="libDir" value="${gitRoot}/lib" />
|
||||||
<property name="libExpDir" value="${gitRoot}/WebContent/WEB-INF/lib" />
|
<property name="libExpDir" value="${gitRoot}/WebContent/WEB-INF/lib" />
|
||||||
<property name="outputDir" value="${gitRoot}/build" />
|
<property name="outputRoot" value="${gitRoot}/build" />
|
||||||
<property name="buildDir" value="${outputDir}/production" />
|
<property name="buildDir" value="${outputRoot}/production" />
|
||||||
<property name="releaseDir" value="${outputDir}/release" />
|
<property name="releaseDir" value="${outputRoot}/release" />
|
||||||
<property name="deployPath" value="/var/lib/tomcat7/webapps/Zallery.war" />
|
<property name="deployPath" value="/var/lib/tomcat7/webapps/Zallery.war" />
|
||||||
|
|
||||||
<!--define standard arguments for javac-->
|
<!--define standard arguments for javac-->
|
||||||
|
|
@ -40,7 +40,7 @@
|
||||||
<!--clean all build paths-->
|
<!--clean all build paths-->
|
||||||
<target name="clean">
|
<target name="clean">
|
||||||
<delete includeemptydirs="true" failonerror="false">
|
<delete includeemptydirs="true" failonerror="false">
|
||||||
<fileset dir="${outputDir}" includes="**/*"/>
|
<fileset dir="${outputRoot}" includes="**/*"/>
|
||||||
</delete>
|
</delete>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue