Changeset 20283 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-03-05T21:08:12+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build.xml
r20245 r20283 1 1 <project name="josm-plugins" default="build" basedir="."> 2 <target name="compile_josm"> 2 <target name="compile_josm" unless="skip-josm"> 3 <echo message="test"/> 3 4 <ant dir="../core" target="dist" /> 4 5 </target> -
applications/editors/josm/plugins/czechaddress/build.xml
r19622 r20283 1 1 <project name="czechaddress" default="dist" basedir="."> 2 2 <property name="josm" location="../../core/dist/josm-custom.jar"/> 3 <property name="josm.classpath" value="../../core/build"/>4 3 <property name="plugin.dist.dir" value="../../dist"/> 5 4 <property name="plugin.build.dir" value="build"/> … … 26 25 <target name="compile" depends="init,revision" 27 26 description="Compile the plugin and make it ready for running"> 28 29 <fail message="You must firstly compile the JOSM itself"><condition><not> 30 <resourcecount count="1" when="ge"> 31 <fileset id="josm" dir="${josm.classpath}"/> 32 </resourcecount> 33 </not></condition></fail> 34 27 35 28 <javac srcdir="src" 36 29 classpath="${josm}" … … 95 88 96 89 <target name="run" depends="compile"> 97 <fail message="You must firstly compile the JOSM itself">98 <condition>99 <not>100 <resourcecount count="1" when="gt">101 <fileset includes="*" id="josm"102 dir="${josm.classpath}"/>103 </resourcecount>104 </not>105 </condition>106 </fail>107 108 90 <java classname="JOSM" fork="true"> 109 91 <jvmarg value="-Xmx1024m"/> … … 149 131 <target name="debug" depends="compile" 150 132 description="Debug CzechAddress with Netbeans"> 151 <fail message="You must firstly compile the JOSM itself">152 <condition>153 <not>154 <resourcecount count="1" when="gt">155 <fileset dir="${josm.classpath}"156 includes="*" id="josm"/>157 </resourcecount>158 </not>159 </condition>160 </fail>161 133 <nbjpdastart addressproperty="jpda.address" 162 134 name="czechaddress"
Note:
See TracChangeset
for help on using the changeset viewer.