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 2021/04/07 13:47:21 UTC

[jena] branch main updated (fd5eb59 -> 4187c46)

This is an automated email from the ASF dual-hosted git repository.

andy pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git.


    from fd5eb59  Bump jcommander from 1.78 to 1.81 (#973)
     new 2454bf1  Use com.fasterxml.jackson BOM
     new 4187c46  Move jcommander dependency management to parent POM

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 jena-fuseki2/jena-fuseki-geosparql/pom.xml |  5 +++--
 pom.xml                                    | 20 +++++++++++---------
 2 files changed, 14 insertions(+), 11 deletions(-)

[jena] 02/02: Move jcommander dependency management to parent POM

Posted by an...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git

commit 4187c4677438edc85a874f0b45925077e1a68d25
Author: Andy Seaborne <an...@apache.org>
AuthorDate: Tue Apr 6 14:22:47 2021 +0100

    Move jcommander dependency management to parent POM
---
 jena-fuseki2/jena-fuseki-geosparql/pom.xml | 5 +++--
 pom.xml                                    | 8 +++++++-
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/jena-fuseki2/jena-fuseki-geosparql/pom.xml b/jena-fuseki2/jena-fuseki-geosparql/pom.xml
index 9705bba..4f3d7db 100644
--- a/jena-fuseki2/jena-fuseki-geosparql/pom.xml
+++ b/jena-fuseki2/jena-fuseki-geosparql/pom.xml
@@ -14,7 +14,9 @@
    limitations under the License.
 -->
 
-<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">
+<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>
     <artifactId>jena-fuseki-geosparql</artifactId>
     <packaging>jar</packaging>
@@ -82,7 +84,6 @@
         <dependency>
             <groupId>com.beust</groupId>
             <artifactId>jcommander</artifactId>
-            <version>1.81</version>
         </dependency>
 
         <dependency>
diff --git a/pom.xml b/pom.xml
index a0d9a00..224f742 100644
--- a/pom.xml
+++ b/pom.xml
@@ -95,7 +95,7 @@
     <ver.lucene>8.8.0</ver.lucene>
     <ver.graalvm>21.0.0.2</ver.graalvm>
     <ver.jython>2.7.2</ver.jython>
-
+    <ver.jcommander>1.81</ver.jcommander>
     <ver.mockito>3.8.0</ver.mockito>
     <ver.awaitility>4.0.3</ver.awaitility>
     <ver.contract.tests>0.2.0</ver.contract.tests>
@@ -599,6 +599,12 @@
         <version>${ver.micrometer}</version>
       </dependency>
 
+      <dependency>
+        <groupId>com.beust</groupId>
+        <artifactId>jcommander</artifactId>
+        <version>${ver.jcommander}</version>
+      </dependency>
+
     </dependencies>
 
   </dependencyManagement>

[jena] 01/02: Use com.fasterxml.jackson BOM

Posted by an...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git

commit 2454bf115ef61e792d1406d68e1b474f8a836cdc
Author: Andy Seaborne <an...@apache.org>
AuthorDate: Tue Apr 6 10:15:17 2021 +0100

    Use com.fasterxml.jackson BOM
---
 pom.xml | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3cd7b8c..a0d9a00 100644
--- a/pom.xml
+++ b/pom.xml
@@ -72,7 +72,6 @@
     -->
     <ver.jsonldjava>0.13.2</ver.jsonldjava>
     <ver.jackson>2.12.2</ver.jackson>
-    <ver.jackson-databind>2.12.2</ver.jackson-databind>
 
     <ver.commonsio>2.8.0</ver.commonsio>
     <ver.commonscli>1.4</ver.commonscli>
@@ -325,14 +324,11 @@
       </dependency>
 
       <dependency>
-        <groupId>com.fasterxml.jackson.core</groupId>
-        <artifactId>jackson-core</artifactId>
+        <groupId>com.fasterxml.jackson</groupId>
+        <artifactId>jackson-bom</artifactId>
         <version>${ver.jackson}</version>
-      </dependency>
-      <dependency>
-        <groupId>com.fasterxml.jackson.core</groupId>
-        <artifactId>jackson-databind</artifactId>
-        <version>${ver.jackson-databind}</version>
+        <type>pom</type>
+        <scope>import</scope>
       </dependency>
 
       <dependency>