41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<project name="MyProject" default="bundle" basedir=".">
|
|
<target name="bundle">
|
|
<taskdef name="bundleapp"
|
|
classpath="appbundler-1.0ea.jar"
|
|
classname="com.oracle.appbundler.AppBundlerTask"/>
|
|
|
|
<!-- Note the usage of classpathref to avoid copy-pasting all
|
|
your classpath entries from another target. -->
|
|
<bundleapp
|
|
outputdirectory="."
|
|
name="Tick's Tales"
|
|
displayname="Tick's Tales"
|
|
identifier="com.tickstales.upallknight"
|
|
shortversion="1.0"
|
|
version="0.1.650"
|
|
icon="../icons.icns"
|
|
mainclassname="advent/core/desktop_launcher"
|
|
copyright="2016 DigitalBounceHouse"
|
|
applicationCategory="public.app-category.games">
|
|
|
|
<runtime dir="/Users/brycecovert/dev/jvms/jre1.8.0_91.jre/Contents/Home"/>
|
|
<classpath file="../target/advent-standalone.jar" />
|
|
|
|
<!-- Specify which architectures you want to support -->
|
|
<arch name="x86_64"/>
|
|
|
|
<!-- Workaround since the icon parameter for bundleapp doesn't work -->
|
|
<option value="-Xdock:icon=Contents/Resources/${bundle.icon}"/>
|
|
|
|
<!-- OSX specific options, optional -->
|
|
<option value="-Dapple.laf.useScreenMenuBar=true"/>
|
|
<option value="-Dcom.apple.macos.use-file-dialog-packages=true"/>
|
|
<option value="-Dcom.apple.macos.useScreenMenuBar=true"/>
|
|
<option value="-Dcom.apple.mrj.application.apple.menu.about.name=${bundle.name}"/>
|
|
<option value="-Dcom.apple.smallTabs=true"/>
|
|
|
|
<option value="-Xmx1024M"/>
|
|
</bundleapp>
|
|
</target>
|
|
</project>
|