Skip to content

Commit

Permalink
use jar-in-jar loader in build.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
badgerben committed Jun 3, 2017
1 parent 41b8f28 commit cf7dc36
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,15 @@
<jar destfile="${dist}/bin/NeosClient.jar" basedir="${build}">
<metainf file="LICENSE"/>
<manifest>
<attribute name="Main-Class" value="client.NeosClient"/>
<attribute name="Main-Class" value="org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader"/>
<attribute name="Rsrc-Main-Class" value="client.NeosClient"/>
<attribute name="Class-Path" value="."/>
<attribute name="Rsrc-Class-Path" value="./ ws-commons-util-1.0.2.jar xmlrpc-client-3.1.3.jar xmlrpc-common-3.1.3.jar"/>
</manifest>
<zipfileset src="jar-in-jar-loader.zip"/>
<fileset file="${lib}/ws-commons-util-1.0.2.jar"/>
<fileset file="${lib}/xmlrpc-client-3.1.3.jar"/>
<fileset file="${lib}/xmlrpc-common-3.1.3.jar"/>
</jar>
</target>

Expand Down

0 comments on commit cf7dc36

Please sign in to comment.