Skip to content

Commit a0a5c59

Browse files
Jayendra Parabmneethiraj
Jayendra Parab
authored andcommitted
ATLAS-4692: upgraded Apache Commons Text to 1.10.0
Signed-off-by: Madhan Neethiraj <madhan@apache.org>
1 parent e71708f commit a0a5c59

File tree

7 files changed

+67
-0
lines changed

7 files changed

+67
-0
lines changed

addons/hbase-bridge/pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,18 @@
126126
<groupId>org.apache.commons</groupId>
127127
<artifactId>commons-configuration2</artifactId>
128128
<version>${commons-conf2.version}</version>
129+
<exclusions>
130+
<exclusion>
131+
<groupId>org.apache.commons</groupId>
132+
<artifactId>commons-text</artifactId>
133+
</exclusion>
134+
</exclusions>
135+
</dependency>
136+
137+
<dependency>
138+
<groupId>org.apache.commons</groupId>
139+
<artifactId>commons-text</artifactId>
140+
<version>${commons-text.version}</version>
129141
</dependency>
130142

131143
<dependency>

addons/hbase-testing-util/pom.xml

+11
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,17 @@
139139
<groupId>org.apache.commons</groupId>
140140
<artifactId>commons-configuration2</artifactId>
141141
<version>${commons-conf2.version}</version>
142+
<exclusions>
143+
<exclusion>
144+
<groupId>org.apache.commons</groupId>
145+
<artifactId>commons-text</artifactId>
146+
</exclusion>
147+
</exclusions>
148+
</dependency>
149+
<dependency>
150+
<groupId>org.apache.commons</groupId>
151+
<artifactId>commons-text</artifactId>
152+
<version>${commons-text.version}</version>
142153
</dependency>
143154
<dependency>
144155
<groupId>org.apache.hadoop</groupId>

common/pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@
7272
<groupId>org.apache.commons</groupId>
7373
<artifactId>commons-configuration2</artifactId>
7474
<version>${commons-conf2.version}</version>
75+
<exclusions>
76+
<exclusion>
77+
<groupId>org.apache.commons</groupId>
78+
<artifactId>commons-text</artifactId>
79+
</exclusion>
80+
</exclusions>
7581
</dependency>
7682

7783
<dependency>
@@ -88,6 +94,12 @@
8894
<scope>compile</scope>
8995
</dependency>
9096

97+
<dependency>
98+
<groupId>org.apache.commons</groupId>
99+
<artifactId>commons-text</artifactId>
100+
<version>${commons-text.version}</version>
101+
</dependency>
102+
91103
<dependency>
92104
<groupId>commons-collections</groupId>
93105
<artifactId>commons-collections</artifactId>

graphdb/api/pom.xml

+9
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,17 @@
5555
<groupId>org.apache.commons</groupId>
5656
<artifactId>commons-configuration2</artifactId>
5757
</exclusion>
58+
<exclusion>
59+
<groupId>org.apache.commons</groupId>
60+
<artifactId>commons-text</artifactId>
61+
</exclusion>
5862
</exclusions>
5963
</dependency>
64+
<dependency>
65+
<groupId>org.apache.commons</groupId>
66+
<artifactId>commons-text</artifactId>
67+
<version>${commons-text.version}</version>
68+
</dependency>
6069
</dependencies>
6170

6271

graphdb/janus-hbase2/pom.xml

+11
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@
7272
<groupId>org.apache.commons</groupId>
7373
<artifactId>commons-configuration2</artifactId>
7474
</exclusion>
75+
<exclusion>
76+
<groupId>org.apache.commons</groupId>
77+
<artifactId>commons-text</artifactId>
78+
</exclusion>
7579
</exclusions>
7680
</dependency>
7781

@@ -112,6 +116,13 @@
112116
</exclusion>
113117
</exclusions>
114118
</dependency>
119+
120+
<dependency>
121+
<groupId>org.apache.commons</groupId>
122+
<artifactId>commons-text</artifactId>
123+
<version>${commons-text.version}</version>
124+
</dependency>
125+
115126
</dependencies>
116127

117128
</project>

graphdb/janus/pom.xml

+11
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,17 @@
6868
<groupId>org.apache.commons</groupId>
6969
<artifactId>commons-configuration2</artifactId>
7070
<version>${commons-conf2.version}</version>
71+
<exclusions>
72+
<exclusion>
73+
<groupId>org.apache.commons</groupId>
74+
<artifactId>commons-text</artifactId>
75+
</exclusion>
76+
</exclusions>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.apache.commons</groupId>
80+
<artifactId>commons-text</artifactId>
81+
<version>${commons-text.version}</version>
7182
</dependency>
7283

7384
<dependency>

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -726,6 +726,7 @@
726726
<commons-lang.version>2.6</commons-lang.version>
727727
<commons-logging.version>1.1.3</commons-logging.version>
728728
<commons-validator.version>1.6</commons-validator.version>
729+
<commons-text.version>1.10.0</commons-text.version>
729730
<curator.version>4.3.0</curator.version>
730731
<doxia.version>1.8</doxia.version>
731732
<dropwizard-metrics>3.2.2</dropwizard-metrics>

0 commit comments

Comments
 (0)