File: build.xml

package info (click to toggle)
dynalang 0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 680 kB
  • ctags: 598
  • sloc: java: 3,843; xml: 558; makefile: 11; sh: 4
file content (18 lines) | stat: -rw-r--r-- 540 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- $Id: $ -->
<project name="all" xmlns:ivy="antlib:org.apache.ivy.ant">
         
  <target name="buildlist"> 
    <ivy:buildlist reference="build-path">
      <fileset dir="." includes="**/build.xml" excludes="build.xml"/>
    </ivy:buildlist>
  </target>
  
  <target name="publish-all" depends="buildlist">
    <subant target="publish" buildpathref="build-path"/>
  </target>

  <target name="clean-all" depends="buildlist">
    <delete dir="ivy/build"/>
    <subant target="clean" buildpathref="build-path" />
  </target>
</project>