You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by dl...@apache.org on 2021/10/27 23:00:05 UTC

[asterixdb-clients] branch master updated: [NO ISSUE] Update jackson-core version

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

dlych pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/asterixdb-clients.git


The following commit(s) were added to refs/heads/master by this push:
     new 4617916  [NO ISSUE] Update jackson-core version
4617916 is described below

commit 46179166dd07f728cefe40ff05ebe3b98785b760
Author: Dmitry Lychagin <dm...@couchbase.com>
AuthorDate: Wed Oct 27 15:49:48 2021 -0700

    [NO ISSUE] Update jackson-core version
    
    Details:
    - Update jackson-core to 2.12.4
    - Introduce build properties for dependency versions
    
    Change-Id: I0ddfa78870bcdedbf8402fb72e2daa235160b956
    Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb-clients/+/13824
    Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
    Reviewed-by: Dmitry Lychagin <dm...@couchbase.com>
    Reviewed-by: Ian Maxon <im...@uci.edu>
---
 asterixdb-jdbc/pom.xml | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/asterixdb-jdbc/pom.xml b/asterixdb-jdbc/pom.xml
index 523282c..bb0414f 100644
--- a/asterixdb-jdbc/pom.xml
+++ b/asterixdb-jdbc/pom.xml
@@ -66,6 +66,13 @@
     <implementation.url>https://asterixdb.apache.org/</implementation.url>
     <implementation.version>${project.version}</implementation.version>
     <implementation.vendor>${project.organization.name}</implementation.vendor>
+
+    <commons-lang3.version>3.12.0</commons-lang3.version>
+    <commons-collections4.version>4.4</commons-collections4.version>
+    <httpcore.version>4.4.14</httpcore.version>
+    <httpclient.version>4.5.13</httpclient.version>
+    <jackson-core.version>2.12.4</jackson-core.version>
+    <junit.version>4.13</junit.version>
   </properties>
 
   <build>
@@ -422,42 +429,42 @@
       <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-lang3</artifactId>
-        <version>3.12.0</version>
+        <version>${commons-lang3.version}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-collections4</artifactId>
-        <version>4.4</version>
+        <version>${commons-collections4.version}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.httpcomponents</groupId>
         <artifactId>httpcore</artifactId>
-        <version>4.4.14</version>
+        <version>${httpcore.version}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.httpcomponents</groupId>
         <artifactId>httpclient</artifactId>
-        <version>4.5.13</version>
+        <version>${httpclient.version}</version>
       </dependency>
       <dependency>
         <groupId>com.fasterxml.jackson.core</groupId>
         <artifactId>jackson-databind</artifactId>
-        <version>2.12.3</version>
+        <version>${jackson-core.version}</version>
       </dependency>
       <dependency>
         <groupId>com.fasterxml.jackson.core</groupId>
         <artifactId>jackson-core</artifactId>
-        <version>2.12.3</version>
+        <version>${jackson-core.version}</version>
       </dependency>
       <dependency>
         <groupId>com.fasterxml.jackson.core</groupId>
         <artifactId>jackson-annotations</artifactId>
-        <version>2.12.3</version>
+        <version>${jackson-core.version}</version>
       </dependency>
       <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>
-        <version>4.13</version>
+        <version>${junit.version}</version>
       </dependency>
     </dependencies>
   </dependencyManagement>