Skip to content

Commit dbbce8e

Browse files
committed
chore: Update sprinboot versio due to fossa failure
Signed-off-by: Javier Aliaga <[email protected]>
1 parent 45b8db8 commit dbbce8e

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<snakeyaml.version>2.0</snakeyaml.version>
5050
<testcontainers.version>1.21.3</testcontainers.version>
5151
<!-- Do NOT UPGRADE spring.version without checking springboot.version alignment -->
52-
<springboot.version>3.4.6</springboot.version>
52+
<springboot.version>3.4.9</springboot.version>
5353
<springframework.version>6.2.7</springframework.version>
5454
<!-- Do NOT UPGRADE springframework.version without checking springboot.version alignment -->
5555
<nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version>
@@ -65,6 +65,8 @@
6565
<commons-io.version>2.14.0</commons-io.version>
6666
<zipkin.version>3.4.0</zipkin.version>
6767
<microcks.version>0.3.1</microcks.version>
68+
<commons-compress.version>1.26.0</commons-compress.version>
69+
<commons-codec.version>1.17.0</commons-codec.version>
6870
</properties>
6971

7072
<distributionManagement>
@@ -372,6 +374,17 @@
372374
<artifactId>wiremock-standalone</artifactId>
373375
<version>${wiremock.version}</version>
374376
</dependency>
377+
<dependency>
378+
<groupId>org.apache.commons</groupId>
379+
<artifactId>commons-compress</artifactId>
380+
<version>${commons-compress.version}</version>
381+
</dependency>
382+
<dependency>
383+
<groupId>commons-codec</groupId>
384+
<artifactId>commons-codec</artifactId>
385+
<version>${commons-codec.version}</version>
386+
<scope>testf</scope>
387+
</dependency>
375388
</dependencies>
376389
</dependencyManagement>
377390

testcontainers-dapr/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@
3333
<groupId>org.testcontainers</groupId>
3434
<artifactId>testcontainers</artifactId>
3535
</dependency>
36+
<dependency>
37+
<groupId>commons-codec</groupId>
38+
<artifactId>commons-codec</artifactId>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.apache.commons</groupId>
42+
<artifactId>commons-compress</artifactId>
43+
</dependency>
3644
</dependencies>
3745

3846
<build>

0 commit comments

Comments
 (0)