1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Author: Miguel Landaeta <miguel@miguel.cc>
Subject: include Class-Path header in all SVNKIT public jars
diff --git a/build.xml b/build.xml
index 1f6f908..09fefb7 100644
--- a/build.xml
+++ b/build.xml
@@ -178,6 +178,9 @@
<include name="org/tmatesoft/svn/core/wc/xml/dtd/**" />
<include name="org/tmatesoft/svn/core/wc/xml/schema/**" />
</fileset>
+ <manifest>
+ <attribute name="Class-Path" value="trilead-ssh2.jar jna.jar sqljet.jar antlr3.jar"/>
+ </manifest>
</jar>
<jar destfile="build/lib/svnkit-javahl.jar">
<fileset dir="svnkit/bin">
@@ -195,6 +198,9 @@
<include name="JAVAHL-LICENSE" />
</fileset>
-->
+ <manifest>
+ <attribute name="Class-Path" value="svnkit.jar svn-javahl.jar"/>
+ </manifest>
</jar>
<!--
<copy file="contrib/trilead/trilead.jar" todir="build/lib" />
|