Added manifest file on dist

This commit is contained in:
Flávio Luiz Schiavoni 2017-01-20 15:06:58 -02:00
parent 449795f6e2
commit 69dbb18825
1 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,11 @@
<mkdir dir="${dist}/lib"/> <mkdir dir="${dist}/lib"/>
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file --> <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
<jar jarfile="${dist}/lib/ShareMySheet-${DSTAMP}.jar" basedir="${build}"/> <jar destfile="${dist}/lib/ShareMySheet-${DSTAMP}.jar" basedir="${build}">
<manifest>
<attribute name="Main-Class" value="br.edu.ufsj.sms.Main"/>
</manifest>
</jar>
</target> </target>
<target name="clean" <target name="clean"