-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
15 lines (15 loc) · 1.01 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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="com.zero_separation.plugins.imagepainter" default="netbeans" basedir=".">
<description>Builds, tests, and runs the project com.zero_separation.plugins.imagepainter.</description>
<import file="nbproject/build-impl.xml"/>
<target name="init" depends="basic-init,files-init,build-init,-javac-init,-build-subproject"/>
<target name="-build-subproject">
<ant dir="./ImagePainter" inheritall="false" target="jar"/>
<copy file="./ImagePainter/dist/ImagePainter.jar" todir="release/libs"/>
<copy file="./ImagePainter/dist/ImagePainter-javadoc.jar" todir="release/docs"/>
<copy file="./ImagePainter/dist/ImagePainter-sources.jar" todir="release/sources"/>
</target>
</project>