- Timestamp:
- 2020-08-12T20:42:33+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r16659 r16878 31 31 <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpath="${ivy.jar.file}"/> 32 32 </target> 33 <target name="init-properties" depends="resolve">33 <target name="init-properties"> 34 34 <property environment="env"/> 35 35 <!-- Load properties in a target and not at top level, so this build file can be … … 38 38 of the importing ant file. Use ${base.dir} instead, which is always the parent 39 39 directory of this file. --> 40 <dirname property="base.dir" file="${ant.file.josm}"/> 40 41 <property name="test.dir" location="${base.dir}/test"/> 41 42 <property name="src.dir" location="${base.dir}/src"/> … … 183 184 </target> 184 185 <!-- Mac OS X target --> 185 <target name="mac" depends="init -properties">186 <target name="mac" depends="init"> 186 187 <!-- Using https://bitbucket.org/infinitekind/appbundler to create mac application bundle --> 187 188 <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="${tools.dir}/appbundler.jar"/> … … 310 311 </copy> 311 312 </target> 312 <target name="init" depends="init-properties ">313 <target name="init" depends="init-properties,resolve"> 313 314 <uptodate property="javacc.notRequired" targetfile="${mapcss.dir}/parsergen/MapCSSParser.java" > 314 315 <srcfiles dir="${mapcss.dir}" includes="MapCSSParser.jj"/> … … 321 322 <mkdir dir="${dist.dir}"/> 322 323 </target> 323 <target name="javadoc" depends="init -properties">324 <target name="javadoc" depends="init"> 324 325 <javadoc destdir="javadoc" 325 326 sourcepath="${src.dir}" … … 828 829 </target> 829 830 830 <target name="imageryindex" depends=" init-properties,script-compile">831 <target name="imageryindex" depends="script-compile"> 831 832 <echo message="Checking editor imagery difference"/> 832 833 <java classname="SyncEditorLayerIndex" failonerror="true" fork="false"> … … 866 867 </target> 867 868 868 <target name="checkstyle-compile" depends="init -properties">869 <target name="checkstyle-compile" depends="init"> 869 870 <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="checkstyle.classpath" conf="checkstyle"/> 870 871 <mkdir dir="${checkstyle-build.dir}"/> … … 916 917 </target> 917 918 918 <target name="pmd" depends="init -properties">919 <target name="pmd" depends="init"> 919 920 <ivy:cachepath log="download-only" file="${tools.ivy}" pathid="pmd.classpath" conf="pmd"/> 920 921 <taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask" classpathref="pmd.classpath"/> … … 944 945 ** Compile build script for generating projection list. 945 946 --> 946 <target name="epsg-compile" depends="init -properties">947 <target name="epsg-compile" depends="init"> 947 948 <property name="proj-classpath" location="${build.dir}"/> 948 949 <mkdir dir="${proj-build.dir}"/>
Note:
See TracChangeset
for help on using the changeset viewer.