Skip to content

Commit 4c1f3d2

Browse files
committed
bumping up commons-io to 2.19.0, and fixing its version in the project
1 parent 40d3f08 commit 4c1f3d2

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

bootique-mongo-junit5/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
<groupId>org.apache.commons</groupId>
5353
<artifactId>commons-lang3</artifactId>
5454
</dependency>
55+
<dependency>
56+
<groupId>commons-io</groupId>
57+
<artifactId>commons-io</artifactId>
58+
</dependency>
5559
<dependency>
5660
<groupId>io.bootique</groupId>
5761
<artifactId>bootique-junit5</artifactId>

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
<morphia.version>2.4.13</morphia.version>
4949
<commons.compress.version>1.26.1</commons.compress.version>
5050
<commons.lang.version>3.18.0</commons.lang.version>
51+
<commons.io.version>2.19.0</commons.io.version>
5152
</properties>
5253

5354
<scm>
@@ -126,12 +127,23 @@
126127
<groupId>org.apache.commons</groupId>
127128
<artifactId>commons-compress</artifactId>
128129
<version>${commons.compress.version}</version>
130+
<exclusions>
131+
<exclusion>
132+
<groupId>commons-io</groupId>
133+
<artifactId>commons-io</artifactId>
134+
</exclusion>
135+
</exclusions>
129136
</dependency>
130137
<dependency>
131138
<groupId>org.apache.commons</groupId>
132139
<artifactId>commons-lang3</artifactId>
133140
<version>${commons.lang.version}</version>
134141
</dependency>
142+
<dependency>
143+
<groupId>commons-io</groupId>
144+
<artifactId>commons-io</artifactId>
145+
<version>${commons.io.version}</version>
146+
</dependency>
135147
</dependencies>
136148
</dependencyManagement>
137149

0 commit comments

Comments
 (0)