Skip to content

Commit 3ca64e0

Browse files
committed
fixing the version of commons-text
1 parent 29297be commit 3ca64e0

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

bootique-jdbc-liquibase-internal/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,11 @@
6060
<groupId>commons-io</groupId>
6161
<artifactId>commons-io</artifactId>
6262
</dependency>
63-
<!-- Need to add this module for the sake of Jakarta environments (where it is superceded by -->
63+
<dependency>
64+
<groupId>org.apache.commons</groupId>
65+
<artifactId>commons-text</artifactId>
66+
</dependency>
67+
<!-- Need to add this module for the sake of Jakarta environments (where it is superseded by -->
6468
<!-- "jackson-module-jakarta-xmlbind-annotations". This prevent LB 3.x ServiceLoader errors. -->
6569
<dependency>
6670
<groupId>com.fasterxml.jackson.module</groupId>

pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
<commons.compress.version>1.26.1</commons.compress.version>
4646
<commons.io.version>2.19.0</commons.io.version>
4747
<commons.lang.version>3.18.0</commons.lang.version>
48+
<commons.text.version>1.14.0</commons.text.version>
4849
<jaxb.version>2.3.1</jaxb.version>
4950
<hikaricp.version>6.2.1</hikaricp.version>
5051
</properties>
@@ -119,6 +120,10 @@
119120
<groupId>commons-io</groupId>
120121
<artifactId>commons-io</artifactId>
121122
</exclusion>
123+
<exclusion>
124+
<groupId>org.apache.commons</groupId>
125+
<artifactId>commons-text</artifactId>
126+
</exclusion>
122127
</exclusions>
123128
</dependency>
124129
<!-- Fix the version of the "liquibase-core" transitive dependency -->
@@ -222,6 +227,11 @@
222227
<artifactId>commons-io</artifactId>
223228
<version>${commons.io.version}</version>
224229
</dependency>
230+
<dependency>
231+
<groupId>org.apache.commons</groupId>
232+
<artifactId>commons-text</artifactId>
233+
<version>${commons.text.version}</version>
234+
</dependency>
225235
<dependency>
226236
<groupId>org.awaitility</groupId>
227237
<artifactId>awaitility</artifactId>

0 commit comments

Comments
 (0)