4
コンパイルタスクを実行しようとしているときにgroovy.compileタスクが実行される理由を理解できません。AntタスクでGroovyファイルをコンパイルする
<taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc">
<classpath>
<path refid="compile.classpath"/>
</classpath>
</taskdef>
<target name="groovy.compile">
<groovyc srcdir="src/groovytest" destdir="bin/classes"/>
</target>
<target name="compile" description="Compile *.java file" depends="init, groovy.compile">
<javac srcdir="src" destdir="bin/classes" debug="on" deprecation="true">
<classpath refid="compile.classpath"/>
</javac>
</target>
Antタスクをgroovycのjavac Antタスクでの.groovyコンパイルしないようにする方法はありますか?
は、私の答えの助けをしましたか? –
はい:ありがとう!!!! – emilan