You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2015/12/10 23:16:29 UTC

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

Author: ggregory
Date: Thu Dec 10 22:16:29 2015
New Revision: 1719224

URL: http://svn.apache.org/viewvc?rev=1719224&view=rev
Log:
Get this project to build.

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=1719224&r1=1719223&r2=1719224&view=diff
==============================================================================
--- httpcomponents/contrib/httpcore/trunk/pom.xml (original)
+++ httpcomponents/contrib/httpcore/trunk/pom.xml Thu Dec 10 22:16:29 2015
@@ -35,30 +35,39 @@
   </parent>
   <artifactId>httpcore-contrib</artifactId>
   <name>Apache HttpCore Contrib</name>
-  <version>4.2-SNAPSHOT</version>
+  <version>4.4-SNAPSHOT</version>
   <description>
    Apache HttpComponents HttpCore - Contributed Components (distributed as source only)
   </description>
   <url>http://hc.apache.org/httpcomponents-core-ga</url>
   <packaging>jar</packaging>
 
+  <properties>
+    <!-- Override parent 7 setting for deprecation (only - other settings stand)-->
+    <maven.compiler.source>1.7</maven.compiler.source>
+    <maven.compiler.target>1.7</maven.compiler.target>
+    <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
+    <commons-logging.version>1.2</commons-logging.version>
+    <hc.stylecheck.version>1</hc.stylecheck.version>
+  </properties>
+
   <dependencies>
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpcore</artifactId>
-      <version>4.4.1</version>
+      <version>4.4.4</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpcore-nio</artifactId>
-      <version>4.4.1</version>
+      <version>4.4.4</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
-      <version>1.2</version>
+      <version>${commons-logging.version}</version>
       <scope>compile</scope>
     </dependency>
   </dependencies>
@@ -69,8 +78,8 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
-          <source>${maven.compile.source}</source>
-          <target>${maven.compile.target}</target>
+          <source>${maven.compiler.source}</source>
+          <target>${maven.compiler.target}</target>
           <optimize>${maven.compile.optimize}</optimize>
           <showDeprecations>${maven.compile.deprecation}</showDeprecations>
         </configuration>