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>
有沒有辦法用javac ant任務編譯.groovy而不是groovyc ant任務?
做我的回答幫助? – 2012-04-23 10:07:18
是:)謝謝! – emilan 2012-04-23 12:08:57