File: build.xml

package info (click to toggle)
netbeans-ide 6.0.1%2Bdfsg-2
  • links: PTS, VCS
  • area: contrib
  • in suites: lenny
  • size: 741,536 kB
  • ctags: 613,961
  • sloc: java: 3,969,489; xml: 336,553; jsp: 11,861; ruby: 10,091; cpp: 4,127; sh: 3,417; ansic: 1,734; sql: 1,306; haskell: 1,019; makefile: 487; perl: 403; objc: 288; php: 120
file content (26 lines) | stat: -rw-r--r-- 1,050 bytes parent folder | download
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>