You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2015/07/21 11:02:09 UTC

[3/4] jena git commit: JENA-994: Dependency management for commons-codec

JENA-994: Dependency management for commons-codec


Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/b5ee0144
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/b5ee0144
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/b5ee0144

Branch: refs/heads/master
Commit: b5ee01449ebfe631262e2dc7f408a35e8531d960
Parents: 562bf34
Author: Andy Seaborne <an...@apache.org>
Authored: Tue Jul 21 09:40:24 2015 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Tue Jul 21 09:40:24 2015 +0100

----------------------------------------------------------------------
 jena-parent/pom.xml | 23 ++++++++++++++++++-----
 1 file changed, 18 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/b5ee0144/jena-parent/pom.xml
----------------------------------------------------------------------
diff --git a/jena-parent/pom.xml b/jena-parent/pom.xml
index 7d2ac69..df6c627 100644
--- a/jena-parent/pom.xml
+++ b/jena-parent/pom.xml
@@ -47,7 +47,7 @@
   </organization>
 
   <properties>
-    <ver.slf4j>1.7.9</ver.slf4j>
+    <ver.slf4j>1.7.12</ver.slf4j>
     <ver.log4j>1.2.17</ver.log4j>
     <ver.junit>4.12</ver.junit>
     <ver.xerces>2.11.0</ver.xerces>
@@ -58,10 +58,17 @@
 
     <!-- These are connected because solr4j depends on httpclient as well -->
     <ver.httpclient>4.2.6</ver.httpclient>
-    <ver.httpcore>4.2.5</ver.httpcore>
-    <ver.lucene>4.6.1</ver.lucene>
-    <ver.solr>4.6.1</ver.solr>
-    <ver.spatial4j>0.4</ver.spatial4j>
+    <ver.httpcore>4.2.6</ver.httpcore>
+    <!-- Normally, these are the same as the above
+	 In the case of 4.2.6, there isn't a httpcore-osgi.
+    -->
+    <ver.httpcore-osgi>4.2.5</ver.httpcore-osgi>
+    <ver.httpclient-osgi>4.2.6</ver.httpclient-osgi>
+
+    <ver.commons-codec>1.9</ver.commons-codec>
+    <ver.lucene>4.9.1</ver.lucene>
+    <ver.solr>4.9.1</ver.solr>
+    <ver.spatial4j>0.4.1</ver.spatial4j>
 
     <jdk.version>1.8</jdk.version>
     <targetJdk>${jdk.version}</targetJdk> <!-- MPMD-86 workaround -->
@@ -136,6 +143,12 @@
       </dependency>
 
       <dependency>
+	<groupId>commons-codec</groupId>
+	<artifactId>commons-codec</artifactId>
+	<version>${ver.commons-codec}</version>
+      </dependency>
+      
+      <dependency>
 	<groupId>org.apache.thrift</groupId>
 	<artifactId>libthrift</artifactId>
 	<version>0.9.2</version>