From eab05108cce0076ea7004bdb74f977ef272863f9 Mon Sep 17 00:00:00 2001 From: tobias <tobias.ullerich@icloud.com> Date: Thu, 23 Jun 2016 20:53:32 +0200 Subject: [PATCH] Add build tool & update application.yml --- PlayWall/build.xml | 32 ++++++++++++++++++++++++++++++++ PlayWall/src/application.yml | 4 ++-- 2 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 PlayWall/build.xml diff --git a/PlayWall/build.xml b/PlayWall/build.xml new file mode 100644 index 00000000..e8324556 --- /dev/null +++ b/PlayWall/build.xml @@ -0,0 +1,32 @@ +<project name="Build App" default="buildApp" basedir="/Users/tobias/Documents/Programmieren/Java/eclipse/"> + + <taskdef name="bundleapp" + classname="com.oracle.appbundler.AppBundlerTask" + classpath="/Users/tobias/Documents/Programmieren/Java/ant/lib/appbundler-1.0.jar" /> + + <taskdef name="launch4j" + classname="net.sf.launch4j.ant.Launch4jTask" + classpath="/Users/tobias/Documents/Programmieren/Java/ant/lib/launch4j/launch4j.jar:${launch4j.dir}/lib/xstream.jar" /> + + <target name="buildApp"> + <bundleapp outputdirectory="/Users/tobias/Documents/Programmieren/Java/eclipse/PlayWall/dist" + name="Play Wall" + displayname="Play Wall" + identifier="de.tobias.playwall" + mainclassname="de.tobias.playpad.PlayPadMain" + icon="/Users/tobias/Documents/Programmieren/Java/git/PlayWall/PlayWall/src/icon.icns"> + <runtime dir="/Library/Java/JavaVirtualMachines/jdk1.8.0_60.jdk/Contents/Home" /> + <classpath file="/Users/tobias/Documents/Programmieren/Java/eclipse/PlayWall/build/PlayWall.jar" /> + </bundleapp> + + <launch4j> + <config headerType="gui" outfile="/Users/tobias/Documents/Programmieren/Java/eclipse/PlayWall/dist/PlayWall.exe" + dontWrapJar="false" jarPath="/Users/tobias/Documents/Programmieren/Java/eclipse/PlayWall/build/PlayWall.jar" + icon="/Users/tobias/Documents/Programmieren/Java/git/PlayWall/PlayWall/src/icon.ico" > + <classPath mainClass="de.tobias.playpad.PlayPadMain" /> + <jre minVersion="1.8.0"> + </jre> + </config> + </launch4j> + </target> +</project> \ No newline at end of file diff --git a/PlayWall/src/application.yml b/PlayWall/src/application.yml index 399d1695..1e0759e5 100644 --- a/PlayWall/src/application.yml +++ b/PlayWall/src/application.yml @@ -1,6 +1,6 @@ name: PlayWall -version: 5.0.0 GM -build: 26 +version: 5.0.0 +build: 27 identifier: de.tobias.playpad main: de.tobias.playpad.PlayPadMain author: Tobias Ullerich -- GitLab