You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ma...@apache.org on 2022/11/06 23:52:18 UTC

[atlas] branch branch-2.0 updated: ATLAS-4692: upgraded Apache Commons Text to 1.10.0

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

madhan pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 47b645e5e ATLAS-4692: upgraded Apache Commons Text to 1.10.0
47b645e5e is described below

commit 47b645e5e5a08bb267088793846fe01362c34901
Author: Jayendra Parab <ja...@gmail.com>
AuthorDate: Wed Oct 26 13:55:31 2022 +0530

    ATLAS-4692: upgraded Apache Commons Text to 1.10.0
    
    Signed-off-by: Madhan Neethiraj <ma...@apache.org>
    (cherry picked from commit a0a5c596f6a551c4612b3063ad96b000374f46ff)
---
 addons/hbase-bridge/pom.xml       | 12 ++++++++++++
 addons/hbase-testing-util/pom.xml | 11 +++++++++++
 common/pom.xml                    | 12 ++++++++++++
 graphdb/api/pom.xml               |  9 +++++++++
 graphdb/janus-hbase2/pom.xml      | 11 +++++++++++
 graphdb/janus/pom.xml             | 11 +++++++++++
 pom.xml                           |  1 +
 7 files changed, 67 insertions(+)

diff --git a/addons/hbase-bridge/pom.xml b/addons/hbase-bridge/pom.xml
index e5728281c..f51a7d6f1 100644
--- a/addons/hbase-bridge/pom.xml
+++ b/addons/hbase-bridge/pom.xml
@@ -126,6 +126,18 @@
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-configuration2</artifactId>
             <version>${commons-conf2.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.commons</groupId>
+                    <artifactId>commons-text</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-text</artifactId>
+            <version>${commons-text.version}</version>
         </dependency>
 
         <dependency>
diff --git a/addons/hbase-testing-util/pom.xml b/addons/hbase-testing-util/pom.xml
index dffb34291..947ca477f 100644
--- a/addons/hbase-testing-util/pom.xml
+++ b/addons/hbase-testing-util/pom.xml
@@ -139,6 +139,17 @@
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-configuration2</artifactId>
             <version>${commons-conf2.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.commons</groupId>
+                    <artifactId>commons-text</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-text</artifactId>
+            <version>${commons-text.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.hadoop</groupId>
diff --git a/common/pom.xml b/common/pom.xml
index c67fa94b2..554ab67d2 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -72,6 +72,12 @@
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-configuration2</artifactId>
             <version>${commons-conf2.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.commons</groupId>
+                    <artifactId>commons-text</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
@@ -88,6 +94,12 @@
             <scope>compile</scope>
         </dependency>
 
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-text</artifactId>
+            <version>${commons-text.version}</version>
+        </dependency>
+
         <dependency>
             <groupId>commons-collections</groupId>
             <artifactId>commons-collections</artifactId>
diff --git a/graphdb/api/pom.xml b/graphdb/api/pom.xml
index 5fc40acf2..741cf8d89 100644
--- a/graphdb/api/pom.xml
+++ b/graphdb/api/pom.xml
@@ -55,8 +55,17 @@
                     <groupId>org.apache.commons</groupId>
                     <artifactId>commons-configuration2</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>org.apache.commons</groupId>
+                    <artifactId>commons-text</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-text</artifactId>
+            <version>${commons-text.version}</version>
+        </dependency>
     </dependencies>
 
 
diff --git a/graphdb/janus-hbase2/pom.xml b/graphdb/janus-hbase2/pom.xml
index caad816b5..4da5ae8e4 100644
--- a/graphdb/janus-hbase2/pom.xml
+++ b/graphdb/janus-hbase2/pom.xml
@@ -72,6 +72,10 @@
                     <groupId>org.apache.commons</groupId>
                     <artifactId>commons-configuration2</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>org.apache.commons</groupId>
+                    <artifactId>commons-text</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
 
@@ -112,6 +116,13 @@
                 </exclusion>
             </exclusions>
         </dependency>
+
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-text</artifactId>
+            <version>${commons-text.version}</version>
+        </dependency>
+
     </dependencies>
 
 </project>
diff --git a/graphdb/janus/pom.xml b/graphdb/janus/pom.xml
index 66766dd8f..75eed0f16 100644
--- a/graphdb/janus/pom.xml
+++ b/graphdb/janus/pom.xml
@@ -68,6 +68,17 @@
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-configuration2</artifactId>
             <version>${commons-conf2.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.commons</groupId>
+                    <artifactId>commons-text</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-text</artifactId>
+            <version>${commons-text.version}</version>
         </dependency>
 
         <dependency>
diff --git a/pom.xml b/pom.xml
index f5ec9fc4f..ca221fe29 100644
--- a/pom.xml
+++ b/pom.xml
@@ -716,6 +716,7 @@
         <commons-lang.version>2.6</commons-lang.version>
         <commons-logging.version>1.1.3</commons-logging.version>
         <commons-validator.version>1.6</commons-validator.version>
+        <commons-text.version>1.10.0</commons-text.version>
         <curator.version>4.3.0</curator.version>
         <doxia.version>1.8</doxia.version>
         <dropwizard-metrics>3.2.2</dropwizard-metrics>