Changeset 32926 in osm for applications/editors/josm/plugins/build-common.xml
- Timestamp:
- 2016-09-04T13:28:40+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r32900 r32926 15 15 <property name="josm" location="../../core/dist/josm-custom.jar"/> 16 16 <property name="josm.test.build.dir" location="../../core/test/build"/> 17 <property name="groovy.jar" location="../00_core_tools/groovy-all-2.4.7.jar"/>18 17 <property name="error_prone_ant.jar" location="../00_core_tools/error_prone_ant-2.0.12.jar"/> 19 18 <property name="checkstyle.jar" location="../00_core_tools/checkstyle/checkstyle-7.1-all.jar"/> … … 438 437 <pathelement path="${josm}"/> 439 438 <pathelement path="${plugin.jar}"/> 440 <pathelement path="${groovy.jar}"/>441 439 <pathelement path="${annotations.jar}"/> 442 440 </path> … … 465 463 </target> 466 464 <target name="test-compile" depends="test-init,dist" if="test.present"> 467 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc" classpath="${groovy.jar}"/>468 465 <sequential> 469 < groovycsrcdir="${plugin.test.dir}/unit" destdir="${plugin.test.dir}/build/unit" encoding="UTF-8">466 <javac debug="on" srcdir="${plugin.test.dir}/unit" destdir="${plugin.test.dir}/build/unit" encoding="UTF-8"> 470 467 <classpath> 471 468 <fileset refid="plugin.requires.jars"/> 472 469 <path refid="test.classpath"/> 473 470 </classpath> 474 <javac debug="on" encoding="UTF-8"> 475 <compilerarg value="-Xlint:all"/> 476 <compilerarg value="-Xlint:-serial"/> 477 </javac> 478 </groovyc> 471 <compilerarg value="-Xlint:all"/> 472 <compilerarg value="-Xlint:-serial"/> 473 </javac> 479 474 </sequential> 480 475 </target>
Note:
See TracChangeset
for help on using the changeset viewer.