vmassol 02/01/05 04:31:10 Modified: httpclient build.xml Log: Added LICENSE file to META-INF directory of HttpClient distributable jar (per suggestion on the general mailing-list) Revision Changes Path 1.12 +6 -2 jakarta-commons/httpclient/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-commons/httpclient/build.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- build.xml 15 Dec 2001 00:52:08 -0000 1.11 +++ build.xml 5 Jan 2002 12:31:10 -0000 1.12 @@ -1,7 +1,7 @@ <project name="HTTP Client" default="compile" basedir="."> <!-- "HTTP Client" component of the Jakarta Commons Subproject - $Id: build.xml,v 1.11 2001/12/15 00:52:08 rwaldhoff Exp $ + $Id: build.xml,v 1.12 2002/01/05 12:31:10 vmassol Exp $ --> <!-- ========== Properties: Property Files =============================== --> @@ -159,7 +159,11 @@ <copy file="README.txt" todir="${dist.home}"/> <jar jarfile ="${dist.home}/commons-${component.name}.jar" basedir ="${build.home}/classes" - manifest ="${build.home}/conf/MANIFEST.MF"/> + manifest ="${build.home}/conf/MANIFEST.MF"> + <metainf dir="${dist.home}"> + <include name="LICENSE"/> + </metainf> + </jar> <mkdir dir="${dist.home}/src"/> <copy todir="${dist.home}/src" filtering="on"> <fileset dir="${source.home}"/>
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>