Skip to content

Commit

Permalink
Fixes #21 Renames jar file distribution from loklak.jar to susiserver…
Browse files Browse the repository at this point in the history
….jar

Enables execution with `java -jar dist/susiserver.jar` on all platforms.
  • Loading branch information
sudheesh001 committed Oct 30, 2016
1 parent 57ed7b4 commit abde9cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.xml
Expand Up @@ -128,10 +128,10 @@

<target name="jar" depends="build">
<mkdir dir="dist"/>
<manifestclasspath property="jar.classpath" jarfile="dist/loklak.jar">
<manifestclasspath property="jar.classpath" jarfile="dist/susiserver.jar">
<classpath refid="loklak.classpath" />
</manifestclasspath>
<jar destfile="dist/loklak.jar" basedir="classes/">
<jar destfile="dist/susiserver.jar" basedir="classes/">
<manifest>
<attribute name="Class-Path" value="${jar.classpath}" />
<attribute name="Main-Class" value="org.loklak.SusiServer" />
Expand Down

0 comments on commit abde9cc

Please sign in to comment.