Groovy Ant

前端之家收集整理的这篇文章主要介绍了Groovy Ant前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
 <goal name="run-groovyc" prereqs="java:compile,test:compile">        <path id="groovy.classpath">      <pathelement path="${maven.build.dest}"/>      <pathelement path="target/classes"/>      <pathelement path="target/test-classes"/>      <path refid="maven.dependency.classpath"/>    </path>  <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc">     <classpath refid="groovy.classpath"/>  </taskdef>  <groovyc destdir="${basedir}/target/test-classes" srcdir="${basedir}/test/groovy"           listfiles="true">     <classpath refid="groovy.classpath"/>  </groovyc>  </goal>

猜你在找的Groovy相关文章