Changeset 23559 in osm for applications/editors/josm/plugins/turnrestrictions
- Timestamp:
- 2010-10-11T21:47:10+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/turnrestrictions/build.xml
r23527 r23559 257 257 <!-- ************************************************************************************ --> 258 258 <!-- * Targets for compiling and running tests --> 259 <!-- ************************************************************************************ --> 259 <!-- ************************************************************************************ --> 260 260 <property name="eclipse.plugin.dir" value="C:\software\eclipse-3.6.1\plugins" /> 261 261 262 262 <path id="groovy.path"> 263 <pathelement location="${eclipse.plugin.dir}/org.codehaus.groovy_1.7.5.xx-20100926-2000-e36-RC1\lib\groovy-all-1.7.5.jar"/> 263 <pathelement location="${eclipse.plugin.dir}/org.codehaus.groovy_1.7.5.xx-20100926-2000-e36-RC1\lib\groovy-all-1.7.5.jar"/> 264 264 </path> 265 265 … … 274 274 <path refid="junit.path"/> 275 275 </path> 276 276 277 277 <path id="groovyc.path"> 278 278 <path refid="junit.path" /> … … 285 285 <pathelement location="test/lib/hamcrest-all-1.2.jar" /> 286 286 </path> 287 288 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc" classpathref="groovy.path"/> 289 287 290 288 <target name="test-clean"> 291 289 <delete dir="${test.build.dir}"/> 292 290 <mkdir dir="${test.build.dir}"/> 293 291 </target> 294 292 295 293 <target name="test-compile" depends="compile,test-clean" description="Compiles the test files"> 296 294 295 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc" classpathref="groovy.path"/> 296 297 297 <echo message="compiling java test cases for ${plugin.jar} ... "/> 298 <javac srcdir="test/src" classpathref="test.class.path" debug="true" destdir="${test.build.dir}"> 298 <javac srcdir="test/src" classpathref="test.class.path" debug="true" destdir="${test.build.dir}"> 299 299 <compilerarg value="-Xlint:deprecation"/> 300 300 <compilerarg value="-Xlint:unchecked"/> … … 302 302 303 303 <echo message="compiling groovy test cases for ${plugin.jar} ... "/> 304 <groovyc srcdir="test/src" destdir="${test.build.dir}" classpathref="groovyc.path"> 305 </groovyc> 306 </target> 307 308 <target name="test-run" depends="test-compile" description="Runs the junit tests"> 304 <groovyc srcdir="test/src" destdir="${test.build.dir}" classpathref="groovyc.path"> 305 </groovyc> 306 </target> 307 308 <target name="test-run" depends="test-compile" description="Runs the junit tests"> 309 309 <delete dir="test/output"/> 310 310 <mkdir dir="test/output"/> … … 316 316 <pathelement location="."/> <!-- required to load images from subdir 'images/' --> 317 317 </classpath> 318 318 319 319 <test todir="test/output" name='org.openstreetmap.josm.plugins.turnrestrictions.AllUnitTests'> 320 320 <formatter type="xml"/>
Note:
See TracChangeset
for help on using the changeset viewer.