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 2008/05/06 20:00:39 UTC

svn commit: r653860 - /httpcomponents/httpclient/trunk/pom.xml

Author: olegk
Date: Tue May  6 11:00:39 2008
New Revision: 653860

URL: http://svn.apache.org/viewvc?rev=653860&view=rev
Log:
Generate source jars in the build phase; Upgrade HttpCore dependency to 4.0-beta2-SNAPSHOT

Modified:
    httpcomponents/httpclient/trunk/pom.xml

Modified: httpcomponents/httpclient/trunk/pom.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/pom.xml?rev=653860&r1=653859&r2=653860&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/pom.xml (original)
+++ httpcomponents/httpclient/trunk/pom.xml Tue May  6 11:00:39 2008
@@ -70,7 +70,7 @@
   </scm>
 
   <properties>
-    <httpcore.version>4.0-beta1</httpcore.version>
+    <httpcore.version>4.0-beta2-SNAPSHOT</httpcore.version>
     <commons-logging.version>1.1.1</commons-logging.version>
     <commons-codec.version>1.3</commons-codec.version>
     <commons-io.version>1.2</commons-io.version>
@@ -86,6 +86,17 @@
   <build>
     <plugins>
       <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-sources</id>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
         <artifactId>maven-javadoc-plugin</artifactId>
       </plugin>
       <plugin>