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 2006/04/09 23:56:55 UTC

svn commit: r392841 - in /jakarta/httpcomponents/project: ./ build.xml pom.xml

Author: olegk
Date: Sun Apr  9 14:56:54 2006
New Revision: 392841

URL: http://svn.apache.org/viewcvs?rev=392841&view=rev
Log:
Updated POM and build files to reflect changes in SVN layout

Modified:
    jakarta/httpcomponents/project/   (props changed)
    jakarta/httpcomponents/project/build.xml
    jakarta/httpcomponents/project/pom.xml

Propchange: jakarta/httpcomponents/project/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Apr  9 14:56:54 2006
@@ -0,0 +1 @@
+build.properties

Modified: jakarta/httpcomponents/project/build.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/project/build.xml?rev=392841&r1=392840&r2=392841&view=diff
==============================================================================
--- jakarta/httpcomponents/project/build.xml (original)
+++ jakarta/httpcomponents/project/build.xml Sun Apr  9 14:56:54 2006
@@ -1,14 +1,14 @@
 <project name="Jakarta HTTP Project" default="compile" basedir=".">
 
   <property file="${basedir}/build.properties"/>
-  <property file="${basedir}/../build.properties"/>
   <property file="${user.home}/build.properties"/>
 
 <!-- ========== Subcomponents ============================================= -->
 
-  <property name="http.core.home"         value="${basedir}/httpcore"/>
-  <property name="http.async.home"        value="${basedir}/httpasync"/>
-  <property name="tcconn.home"            value="${basedir}/tcconnector"/>
+  <property name="project.home"           value="${basedir}/.."/>
+  <property name="http.core.home"         value="${project.home}/httpcore"/>
+  <property name="http.async.home"        value="${project.home}/httpasync"/>
+  <property name="tcconn.home"            value="${project.home}/tcconnector"/>
 
 <!-- ========== Targets =================================================== -->
 

Modified: jakarta/httpcomponents/project/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/project/pom.xml?rev=392841&r1=392840&r2=392841&view=diff
==============================================================================
--- jakarta/httpcomponents/project/pom.xml (original)
+++ jakarta/httpcomponents/project/pom.xml Sun Apr  9 14:56:54 2006
@@ -162,8 +162,8 @@
   </reporting>
 
   <modules>
-    <module>httpcore</module>
-    <module>httpasync</module>
+    <module>../httpcore</module>
+    <module>../httpasync</module>
   </modules>
 
 </project>