You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/jarjar/files/0.9-system-jars.patch

21 lines
790 B

Index: build.xml
===================================================================
--- build.xml (revision 90)
+++ build.xml (working copy)
@@ -93,6 +93,15 @@
</jarjar>
</target>
+ <target name="jar-nojarjar" depends="compile" description="Create Jar Without running JarJar task on it">
+ <mkdir dir="dist"/>
+ <jar jarfile="${jarfile}" basedir="build/main/">
+ <manifest>
+ <attribute name="Main-Class" value="com.tonicsystems.jarjar.Main"/>
+ <attribute name="Implementation-Version" value="${version}"/>
+ </manifest>
+ </jar>
+ </target>
<target name="jar-util" depends="compile" description="Create utility Jar">
<mkdir dir="dist"/>
<jar jarfile="${jarfile.util}">