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 2007/03/28 14:58:23 UTC

svn commit: r523303 - in /jakarta/httpcomponents/project: build-common.xml build.properties.sample build.xml

Author: olegk
Date: Wed Mar 28 05:58:22 2007
New Revision: 523303

URL: http://svn.apache.org/viewvc?view=rev&rev=523303
Log:
Removed test connector targets from build.xml

Removed:
    jakarta/httpcomponents/project/build-common.xml
Modified:
    jakarta/httpcomponents/project/build.properties.sample
    jakarta/httpcomponents/project/build.xml

Modified: jakarta/httpcomponents/project/build.properties.sample
URL: http://svn.apache.org/viewvc/jakarta/httpcomponents/project/build.properties.sample?view=diff&rev=523303&r1=523302&r2=523303
==============================================================================
--- jakarta/httpcomponents/project/build.properties.sample (original)
+++ jakarta/httpcomponents/project/build.properties.sample Wed Mar 28 05:58:22 2007
@@ -1,7 +1,6 @@
 # External library dependencies
 
 java.lib=/usr/share/java
-tomcat.server.lib=/opt/tomcat/server/lib
 findbugs.home=/opt/findbugs
 
 findbugs.level=medium
@@ -10,8 +9,6 @@
 clover.jar=${java.lib}/clover.jar
 
 commons-logging.jar=${java.lib}/commons-logging.jar
-tomcat-coyote.jar=${tomcat.server.lib}/tomcat-coyote.jar
-tomcat-util.jar=${tomcat.server.lib}/tomcat-util.jar
 
 # Javadocs dependecies
 

Modified: jakarta/httpcomponents/project/build.xml
URL: http://svn.apache.org/viewvc/jakarta/httpcomponents/project/build.xml?view=diff&rev=523303&r1=523302&r2=523303
==============================================================================
--- jakarta/httpcomponents/project/build.xml (original)
+++ jakarta/httpcomponents/project/build.xml Wed Mar 28 05:58:22 2007
@@ -38,26 +38,22 @@
   <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 =================================================== -->
 
   <target name="clean">
     <ant dir="${http.core.home}" target="clean"/>
     <ant dir="${http.async.home}" target="clean"/>
-    <ant dir="${tcconn.home}" target="clean"/>
   </target>
 
   <target name="compile">
     <ant dir="${http.core.home}" target="compile"/>
     <ant dir="${http.async.home}" target="compile"/>
-    <ant dir="${tcconn.home}" target="compile"/>
   </target>
 
   <target name="javadoc">
     <ant dir="${http.core.home}" target="javadoc"/>
     <ant dir="${http.async.home}" target="javadoc"/>
-    <ant dir="${tcconn.home}" target="javadoc"/>
   </target>
 
   <target name="test">
@@ -67,7 +63,6 @@
   <target name="package">
     <ant dir="${http.core.home}" target="package"/>
     <ant dir="${http.async.home}" target="package"/>
-    <ant dir="${tcconn.home}" target="package"/>
   </target>
 
 </project>