You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2005/10/20 22:45:46 UTC

svn commit: r326999 - /jakarta/httpclient/trunk/coyote-httpconnector/build.xml

Author: olegk
Date: Thu Oct 20 13:45:42 2005
New Revision: 326999

URL: http://svn.apache.org/viewcvs?rev=326999&view=rev
Log:
Renamed http-common to http-core

Modified:
    jakarta/httpclient/trunk/coyote-httpconnector/build.xml

Modified: jakarta/httpclient/trunk/coyote-httpconnector/build.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpclient/trunk/coyote-httpconnector/build.xml?rev=326999&r1=326998&r2=326999&view=diff
==============================================================================
--- jakarta/httpclient/trunk/coyote-httpconnector/build.xml (original)
+++ jakarta/httpclient/trunk/coyote-httpconnector/build.xml Thu Oct 20 13:45:42 2005
@@ -1,4 +1,4 @@
-<project name="Jakarta Http Coyote Connector" default="compile" basedir=".">
+<project name="Jakarta HttpComponents HttpConnector" default="compile" basedir=".">
 
   <property file="${basedir}/build.properties"/>
   <property file="${basedir}/../build.properties"/>
@@ -6,8 +6,8 @@
 
 <!-- ========== Required component properties ============================= -->
 
-  <property name="component.name"          value="coyote-httpconnector"/>
-  <property name="component.title"         value="Jakarta Http Coyote Connector"/>
+  <property name="component.name"          value="http-connector"/>
+  <property name="component.title"         value="Jakarta HttpComponents HttpConnector"/>
   <property name="component.version"       value="1.0-dev"/>
   <property name="component.home"          value="${basedir}"/>
   <property name="component.src"           value="${component.home}/src/java"/>
@@ -17,12 +17,12 @@
    
 <!-- ========== External dependencies ===================================== -->
 
-  <property name="httpcommon.home"         value="../http-common"/>
-  <property name="httpcommon.classes"      value="${httpcommon.home}/target/classes"/>
+  <property name="http.core.home"         value="../http-core"/>
+  <property name="http.core.classes"      value="${http.core.home}/target/classes"/>
 
   <path id="component.depends">
     <pathelement location="${component.classes}"/>
-    <pathelement location="${httpcommon.classes}"/>
+    <pathelement location="${http.core.classes}"/>
     <pathelement location="${commons-logging.jar}"/>
     <pathelement location="${tomcat-util.jar}"/>
     <pathelement location="${tomcat-coyote.jar}"/>