Ignore:
Timestamp:
2016-09-04T13:28:40+02:00 (8 years ago)
Author:
donvip
Message:

remove Groovy dependence

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/build-common.xml

    r32900 r32926  
    1515    <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
    1616    <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"/>
    1817    <property name="error_prone_ant.jar"    location="../00_core_tools/error_prone_ant-2.0.12.jar"/>
    1918    <property name="checkstyle.jar"         location="../00_core_tools/checkstyle/checkstyle-7.1-all.jar"/>
     
    438437        <pathelement path="${josm}"/>
    439438        <pathelement path="${plugin.jar}"/>
    440         <pathelement path="${groovy.jar}"/>
    441439        <pathelement path="${annotations.jar}"/>
    442440    </path>
     
    465463    </target>
    466464    <target name="test-compile" depends="test-init,dist" if="test.present">
    467         <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc" classpath="${groovy.jar}"/>
    468465        <sequential>
    469             <groovyc srcdir="${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">
    470467                <classpath>
    471468                    <fileset refid="plugin.requires.jars"/>
    472469                    <path refid="test.classpath"/>
    473470                </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>
    479474        </sequential>
    480475    </target>
Note: See TracChangeset for help on using the changeset viewer.