Skip to content

Commit 1f9626f

Browse files
authored
More security upgrades (#715)
1 parent 680c828 commit 1f9626f

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,10 @@
4646
<awaitility.version>4.2.2</awaitility.version>
4747
<commons-codec.version>1.17.0</commons-codec.version>
4848
<commons-compress.version>1.26.2</commons-compress.version>
49+
<commons-configuration2.version>2.11.0</commons-configuration2.version>
4950
<commons-io.version>2.17.0</commons-io.version>
5051
<commons-lang3.version>3.14.0</commons-lang3.version>
52+
<commons-logging.version>1.3.2</commons-logging.version>
5153
<hamcrest.version>1.3</hamcrest.version>
5254
<jackson.version>2.15.2</jackson.version>
5355
<java.version>11</java.version>
@@ -83,6 +85,13 @@
8385
<type>pom</type>
8486
<scope>import</scope>
8587
</dependency>
88+
<dependency>
89+
<groupId>io.netty</groupId>
90+
<artifactId>netty-bom</artifactId>
91+
<version>4.1.118.Final</version>
92+
<type>pom</type>
93+
<scope>import</scope>
94+
</dependency>
8695
<dependency>
8796
<groupId>org.jetbrains.kotlin</groupId>
8897
<artifactId>kotlin-bom</artifactId>
@@ -139,6 +148,11 @@
139148
<artifactId>commons-io</artifactId>
140149
<version>${commons-io.version}</version>
141150
</dependency>
151+
<dependency>
152+
<groupId>commons-logging</groupId>
153+
<artifactId>commons-logging</artifactId>
154+
<version>${commons-logging.version}</version>
155+
</dependency>
142156
<dependency>
143157
<groupId>io.confluent</groupId>
144158
<artifactId>kafka-avro-serializer</artifactId>
@@ -164,6 +178,11 @@
164178
<artifactId>commons-compress</artifactId>
165179
<version>${commons-compress.version}</version>
166180
</dependency>
181+
<dependency>
182+
<groupId>org.apache.commons</groupId>
183+
<artifactId>commons-configuration2</artifactId>
184+
<version>${commons-configuration2.version}</version>
185+
</dependency>
167186
<dependency>
168187
<groupId>org.apache.commons</groupId>
169188
<artifactId>commons-lang3</artifactId>

0 commit comments

Comments
 (0)