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 2012/09/28 22:29:08 UTC

svn commit: r1391639 - /httpcomponents/contrib/httpcore/trunk/pom.xml

Author: olegk
Date: Fri Sep 28 20:29:07 2012
New Revision: 1391639

URL: http://svn.apache.org/viewvc?rev=1391639&view=rev
Log:
Fixed pom.xml of HttpCore Contrib

Modified:
    httpcomponents/contrib/httpcore/trunk/pom.xml

Modified: httpcomponents/contrib/httpcore/trunk/pom.xml
URL: http://svn.apache.org/viewvc/httpcomponents/contrib/httpcore/trunk/pom.xml?rev=1391639&r1=1391638&r2=1391639&view=diff
==============================================================================
--- httpcomponents/contrib/httpcore/trunk/pom.xml (original)
+++ httpcomponents/contrib/httpcore/trunk/pom.xml Fri Sep 28 20:29:07 2012
@@ -28,12 +28,14 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
+    <artifactId>project</artifactId>
     <groupId>org.apache.httpcomponents</groupId>
-    <artifactId>httpcomponents-core</artifactId>
-    <version>4.3-alpha1-SNAPSHOT</version>
+    <version>6</version>
+    <relativePath>../project/pom.xml</relativePath>
   </parent>
   <artifactId>httpcore-contrib</artifactId>
   <name>HttpCore Contrib</name>
+  <version>4.2-SNAPSHOT</version>
   <description>
    HttpComponents HttpCore - Contributed Components (distributed as source only)
   </description>
@@ -44,18 +46,19 @@
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpcore</artifactId>
-      <version>${project.version}</version>
+      <version>4.3-alpha1-SNAPSHOT</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpcore-nio</artifactId>
-      <version>${project.version}</version>
+      <version>4.3-alpha1-SNAPSHOT</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
+      <version>1.1.1</version>
       <scope>compile</scope>
     </dependency>
   </dependencies>