forked from Webreaper/GooglePhotoSync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
22 lines (20 loc) · 967 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
<project name="PicasyncBundle" default="picasync-bundle" basedir=".">
<property environment="env" />
<taskdef name="bundleapp"
classname="com.oracle.appbundler.AppBundlerTask"
classpath="lib/appbundler-1.0.jar" />
<!-- See the lib reference here, this is why you need to use the lib directory! -->
<target name="picasync-bundle">
<delete dir="out/appBundle" failonerror="false"/>
<mkdir dir="out/appBundle"/>
<bundleapp outputdirectory="out/appBundle"
name="Picawebsync"
displayname="Picawebsync"
icon="src/main/resources/picasa.icns"
identifier="com.otway.picasasync.Main.Main"
mainclassname="com.otway.picasasync.Main.Main">
<classpath file="classes/artifacts/PicasaWebSync_jar/*.jar" />
<option value="-Dapple.awt.UIElement=true"/>
</bundleapp>
</target>
</project>