File: build.xml

package info (click to toggle)
openjfx 11.0.2%2B1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 259,996 kB
  • sloc: cpp: 1,553,792; java: 770,301; ansic: 577,227; xml: 78,166; perl: 19,857; objc: 17,740; python: 11,421; ruby: 10,137; asm: 7,588; sh: 3,470; makefile: 3,023; yacc: 405
file content (16 lines) | stat: -rw-r--r-- 483 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="UTF-8"?>
<project name="toys" basedir="." default="jar">

    <target description="Build the toys" name="jar">
        <ant dir="HelloTest" target="jar" inheritAll="true"/>
        <ant dir="Robot" target="jar" inheritAll="true"/>
    </target>

    <target description="Clean the toys" name="clean">
        <ant dir="HelloTest" target="clean" inheritAll="true"/>
        <ant dir="Robot" target="clean" inheritAll="true"/>
    </target>

</project>