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:32:20 UTC

svn commit: r326998 - in /jakarta/httpclient/trunk: build.xml http-core/build.xml

Author: olegk
Date: Thu Oct 20 13:32:14 2005
New Revision: 326998

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

Modified:
    jakarta/httpclient/trunk/build.xml
    jakarta/httpclient/trunk/http-core/build.xml

Modified: jakarta/httpclient/trunk/build.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpclient/trunk/build.xml?rev=326998&r1=326997&r2=326998&view=diff
==============================================================================
--- jakarta/httpclient/trunk/build.xml (original)
+++ jakarta/httpclient/trunk/build.xml Thu Oct 20 13:32:14 2005
@@ -6,32 +6,32 @@
 
 <!-- ========== Subcomponents ============================================= -->
 
-  <property name="httpcommon.home"         value="${basedir}/http-common"/>
+  <property name="http.core.home"         value="${basedir}/http-core"/>
   <property name="coyote-httpconn.home"    value="${basedir}/coyote-httpconnector"/>
 
 <!-- ========== Targets =================================================== -->
 
   <target name="clean">
-    <ant dir="${httpcommon.home}" target="clean"/>
+    <ant dir="${http.core.home}" target="clean"/>
     <ant dir="${coyote-httpconn.home}" target="clean"/>
   </target>
 
   <target name="compile">
-    <ant dir="${httpcommon.home}" target="compile"/>
+    <ant dir="${http.core.home}" target="compile"/>
     <ant dir="${coyote-httpconn.home}" target="compile"/>
   </target>
 
   <target name="javadoc">
-    <ant dir="${httpcommon.home}" target="javadoc"/>
+    <ant dir="${http.core.home}" target="javadoc"/>
     <ant dir="${coyote-httpconn.home}" target="javadoc"/>
   </target>
 
   <target name="test">
-    <ant dir="${httpcommon.home}" target="test"/>
+    <ant dir="${http.core.home}" target="test"/>
   </target>
 
   <target name="package">
-    <ant dir="${httpcommon.home}" target="package"/>
+    <ant dir="${http.core.home}" target="package"/>
     <ant dir="${coyote-httpconn.home}" target="package"/>
   </target>
 

Modified: jakarta/httpclient/trunk/http-core/build.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpclient/trunk/http-core/build.xml?rev=326998&r1=326997&r2=326998&view=diff
==============================================================================
--- jakarta/httpclient/trunk/http-core/build.xml (original)
+++ jakarta/httpclient/trunk/http-core/build.xml Thu Oct 20 13:32:14 2005
@@ -1,4 +1,4 @@
-<project name="Jakarta Http Common" default="compile" basedir=".">
+<project name="Jakarta HttpCompomponents Core" 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="http-common"/>
-  <property name="component.title"         value="Jakarta Http Common"/>
+  <property name="component.name"          value="http-core"/>
+  <property name="component.title"         value="Jakarta HttpComponents Core"/>
   <property name="component.version"       value="4.0-dev"/>
   <property name="component.home"          value="${basedir}"/>
   <property name="component.src"           value="${component.home}/src/java"/>