jsdever 2002/10/28 22:08:20
Modified: httpclient LICENSE.txt build.properties.sample build.xml
Log:
Add build property for jsse.
Contributed by: Rob Leland
Commited by: Jeff Dever
Revision Changes Path
1.2 +4 -4 jakarta-commons/httpclient/LICENSE.txt
Index: LICENSE.txt
===================================================================
RCS file: /home/cvs/jakarta-commons/httpclient/LICENSE.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- LICENSE.txt 25 Jul 2002 02:36:45 -0000 1.1
+++ LICENSE.txt 29 Oct 2002 06:08:20 -0000 1.2
@@ -7,7 +7,7 @@
*
* The Apache Software License, Version 1.1
*
- * Copyright (c) 1999-2001 The Apache Software Foundation. All rights
+ * Copyright (c) 1999-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
1.11 +6 -1 jakarta-commons/httpclient/build.properties.sample
Index: build.properties.sample
===================================================================
RCS file: /home/cvs/jakarta-commons/httpclient/build.properties.sample,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- build.properties.sample 2 Sep 2002 21:43:49 -0000 1.10
+++ build.properties.sample 29 Oct 2002 06:08:20 -0000 1.11
@@ -31,6 +31,11 @@
jnet.jar=${jsse.lib}/jnet.jar
jsse.jar=${jsse.lib}/jsse.jar
+# A JCE implementation (see http://java.sun.com/products/jce):
+# Required to compile, only needed at runtime if you're using HTTPS.
+jce.lib=${base.path}/Programs/sun/jce1.2.2/lib
+jce.jar=${jce.lib}/jce1_2_2.jar
+
# The Servlet API (See http://java.sun.com/products/servlet)
# Required to compile the test webapp.
servlet.jar=${base.path}/jakarta-tomcat/lib/servlet.jar
1.20 +5 -3 jakarta-commons/httpclient/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/httpclient/build.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- build.xml 7 Sep 2002 17:16:13 -0000 1.19
+++ build.xml 29 Oct 2002 06:08:20 -0000 1.20
@@ -92,6 +92,7 @@
<pathelement location="${build.home}/classes"/>
<pathelement location="${junit.jar}"/>
<pathelement location="${jsse.jar}"/>
+ <pathelement location="${jce.jar}"/>
<pathelement location="${jnet.jar}"/>
<pathelement location="${commons-logging.jar}"/>
</path>
@@ -104,6 +105,7 @@
<pathelement location="${build.home}/tests"/>
<pathelement location="${junit.jar}"/>
<pathelement location="${jsse.jar}"/>
+ <pathelement location="${jce.jar}"/>
<pathelement location="${jcert.jar}"/>
<pathelement location="${jnet.jar}"/>
<pathelement location="${commons-logging.jar}"/>
@@ -175,13 +177,13 @@
<target name="dist" depends="compile,doc"
description="Create binary distribution">
<mkdir dir="${dist.home}"/>
- <copy file="../LICENSE" todir="${dist.home}"/>
+ <copy file="LICENSE.txt" todir="${dist.home}"/>
<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">
<metainf dir="${dist.home}">
- <include name="LICENSE"/>
+ <include name="LICENSE.txt"/>
</metainf>
</jar>
<mkdir dir="${dist.home}/src"/>
--
To unsubscribe, e-mail: <mailto:commons-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@;jakarta.apache.org>