forked from chenopodium/TorrentScout
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.xml
22 lines (19 loc) · 1018 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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 name="TorrentScout" basedir=".">
<description>Builds the module suite TorrentScout.</description>
<import file="nbproject/build-impl.xml"/>
<target name="deb-init">
<property name="debroot" location="S:/svn/trunk/TSLight/ion-torrentscout-light/"/>
<property name="deb" location="${debroot}/debian/"/>
<property name="netlib" location="S:/NetBeans 7.0/libraries/"/>
<property name="deb.jar" location="${harness.dir}/antlib/JDeb.jar"/>
</target>
<target name="copywar_to_deb_community" depends="deb-init, build, -jdk-init" >
<copy tofile="${debroot}/torrentscout.war">
<fileset dir="${dist.dir}" includes="torrentscout.war"/>
</copy>
</target>
</project>