File: build.xml

package info (click to toggle)
libnb-platform18-java 8.1%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 85,228 kB
  • ctags: 104,620
  • sloc: java: 705,506; xml: 124,894; ansic: 6,317; sh: 4,043; cpp: 2,492; objc: 288; perl: 277; makefile: 261
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>