You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by fu...@apache.org on 2005/07/16 07:15:52 UTC

svn commit: r219288 - /incubator/derby/code/branches/10.1/build.xml

Author: fuzzylogic
Date: Fri Jul 15 22:15:48 2005
New Revision: 219288

URL: http://svn.apache.org/viewcvs?rev=219288&view=rev
Log:
Merge fix for DERBY-440 and DERBY-419 from trunk.

Modified:
    incubator/derby/code/branches/10.1/build.xml

Modified: incubator/derby/code/branches/10.1/build.xml
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/build.xml?rev=219288&r1=219287&r2=219288&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/build.xml (original)
+++ incubator/derby/code/branches/10.1/build.xml Fri Jul 15 22:15:48 2005
@@ -756,6 +756,7 @@
 
     <jar destfile="${derby.jar.dir}/derby.jar" 
          update="true"
+         filesonly="true"
          compress="true">
       <fileset dir="${out.dir}"
                includes="org/apache/derby/loc/m?_en.properties,
@@ -901,6 +902,11 @@
     <copy todir="${derby.jar.dir}/lists/META-INF">
       <fileset dir="${basedir}" includes="LICENSE*,NOTICE*,COPYRIGHT*"/>
     </copy>
+  	
+    <manifest file="${derby.jar.dir}/lists/smfnet.mf">
+      <attribute name="Main-Class" value="org.apache.derby.drda.NetworkServerControl"/>
+      <attribute name="Class-Path" value="derby.jar"/>
+    </manifest> 
 
     <delete file="${derby.jar.dir}/derbynet.jar"/>
     <jar destfile="${derby.jar.dir}/derbynet.jar"
@@ -911,7 +917,8 @@
     <jar destfile="${derby.jar.dir}/derbynet.jar"
          compress="true"
          filesonly="true"
-         update="true">
+         update="true"
+    	 manifest="${derby.jar.dir}/lists/smfnet.mf">
       <fileset dir="${out.dir}"
                includes="org/apache/derby/loc/drda/**,
                          org/apache/derby/info/net.properties"/>