summaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-11-01 03:22:40 +0100
committerSven Gothel <[email protected]>2013-11-01 03:22:40 +0100
commite97c3336039ea8408f52b896b22a776b1112509f (patch)
treeed168655e628135592aaca506eb71d3e14dd4d93 /make/build.xml
parent06a3aaa5fd38097a4644921a269d6ca282fb31eb (diff)
Bug 881 - Add 'Application-Name' in Jar's manifest to avoid Java6 NPEs ..v2.1.3v2.1.2
Diffstat (limited to 'make/build.xml')
-rwxr-xr-xmake/build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml
index e14c5fd..5a34eff 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -107,7 +107,7 @@
</target>
<target name="jar" depends="compile" description="Build JOAL demos jar file">
- <jar destfile="${joal.demos.jar}">
+ <jar manifest="manifest.mf" destfile="${joal.demos.jar}">
<fileset dir="${classes.dir}" />
<fileset dir="${src.dir}">
<include name="demos/data/**" />