File: build.xml

package info (click to toggle)
libnb-platform18-java 7.4%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 81,288 kB
  • ctags: 101,418
  • sloc: java: 682,018; xml: 117,409; ansic: 6,281; sh: 3,982; cpp: 2,458; objc: 288; perl: 276; makefile: 252
file content (26 lines) | stat: -rw-r--r-- 1,204 bytes parent folder | download | duplicates (3)
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"?>
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
<!-- for some information on what you could do (e.g. targets to override). -->
<!-- If you delete this file and reopen the project it will be recreated. -->
<project basedir="." name="libs.nbi.engine" default="netbeans">
    <description>Builds, tests, and runs the project org.netbeans.libs.nbi.engine</description>
    <import file="../nbbuild/templates/projectized.xml"/>

    <target name="build-nbi-engine" depends="init">
         <ant dir="${basedir}/../nbi/engine" target="jar" inheritAll="false">
            <property name="platforms.JDK_1.5.home" value="${nbjdk.home}"/>
            <property name="build.dir" location="${build.dir}/engine/build"/>
            <property name="dist.dir" location="${build.dir}/engine/dist"/>
         </ant>
    </target>

    <target name="copy-nbi-engine">
         <copy file="${build.dir}/engine/dist/nbi-engine.jar" todir="${cluster}/modules/ext"/>
    </target>

    <target name="netbeans-extra" depends="copy-nbi-engine"/>

    <target name="jar" depends="init,build-nbi-engine,projectized-common.jar">
    </target>

</project>