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>
|