I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Verified Commit e15110bb authored by zzz's avatar zzz
Browse files

Build: Fix i2pcontrol unset property in manifest

parent 2cffda69
No related branches found
No related tags found
No related merge requests found
...@@ -93,6 +93,8 @@ ...@@ -93,6 +93,8 @@
</target> </target>
<target name="jar" depends="compile"> <target name="jar" depends="compile">
<!-- set if unset -->
<property name="workspace.changes.tr" value="" />
<jar destfile="build/i2pcontrol.jar" basedir="./build/obj" includes="**/*.class" > <jar destfile="build/i2pcontrol.jar" basedir="./build/obj" includes="**/*.class" >
<manifest> <manifest>
<attribute name="Implementation-Version" value="${full.version}" /> <attribute name="Implementation-Version" value="${full.version}" />
...@@ -107,6 +109,8 @@ ...@@ -107,6 +109,8 @@
</target> </target>
<target name="socketJar" depends="compileSocketJar"> <target name="socketJar" depends="compileSocketJar">
<!-- set if unset -->
<property name="workspace.changes.tr" value="" />
<jar destfile="build/i2pcontrol.jar" basedir="./build/obj" includes="**/*.class" > <jar destfile="build/i2pcontrol.jar" basedir="./build/obj" includes="**/*.class" >
<manifest> <manifest>
<attribute name="Implementation-Version" value="${full.version}" /> <attribute name="Implementation-Version" value="${full.version}" />
...@@ -121,6 +125,8 @@ ...@@ -121,6 +125,8 @@
</target> </target>
<target name="war" depends="compile" > <target name="war" depends="compile" >
<!-- set if unset -->
<property name="workspace.changes.tr" value="" />
<war destfile="build/jsonrpc.war" webxml="web.xml" > <war destfile="build/jsonrpc.war" webxml="web.xml" >
<classes dir="./build/obj" excludes="net/i2p/i2pcontrol/I2PControlController.class net/i2p/i2pcontrol/HostCheckHandler.class net/i2p/i2pcontrol/SocketController*.class" /> <classes dir="./build/obj" excludes="net/i2p/i2pcontrol/I2PControlController.class net/i2p/i2pcontrol/HostCheckHandler.class net/i2p/i2pcontrol/SocketController*.class" />
<manifest> <manifest>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment