1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="netbeans" name="scripting/groovy/kit">
<description>Builds, tests, and runs the project org.netbeans.modules.groovy.kit</description>
<import file="../../../nbbuild/templates/projectized.xml"/>
<target name="groovy-build">
<ant dir="../editor"/>
<ant dir="../grails"/>
<ant dir="../grailsproject"/>
<ant dir="../support"/>
<ant dir="../groovyproject"/>
<ant dir="../gsp"/>
<antcall target="netbeans"/>
</target>
<target name="groovy-clean">
<ant dir="../gsp" inheritAll="false" target="clean"/>
<ant dir="../groovyproject" inheritAll="false" target="clean"/>
<ant dir="../support" inheritAll="false" target="clean"/>
<ant dir="../grailsproject" inheritAll="false" target="clean"/>
<ant dir="../grails" inheritAll="false" target="clean"/>
<ant dir="../editor" inheritAll="false" target="clean"/>
<ant target="clean"/>
</target>
</project>
|