Skip to content

Commit c897dec

Browse files
committed
Fix class not found
Signed-off-by: sirivarma <[email protected]>
1 parent b72b391 commit c897dec

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

dapr-spring/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</modules>
2929

3030
<properties>
31-
<springboot.version>3.2.6</springboot.version>
31+
<springboot.version>3.4.3</springboot.version>
3232
<maven.compiler.source>11</maven.compiler.source>
3333
<maven.compiler.target>11</maven.compiler.target>
3434
<maven.compiler.release>11</maven.compiler.release>

pom.xml

+17-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<argLine>--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED</argLine>
4343
<failsafe.version>3.2.2</failsafe.version>
4444
<surefire.version>3.2.2</surefire.version>
45-
<junit-bom.version>5.8.2</junit-bom.version>
45+
<junit-bom.version>5.11.4</junit-bom.version>
4646
<snakeyaml.version>2.0</snakeyaml.version>
4747
<testcontainers.version>1.20.0</testcontainers.version>
4848
<springboot.version>3.4.3</springboot.version>
@@ -138,7 +138,22 @@
138138
<dependency>
139139
<groupId>org.junit.jupiter</groupId>
140140
<artifactId>junit-jupiter</artifactId>
141-
<version>5.8.2</version>
141+
<version>5.11.4</version>
142+
</dependency>
143+
<dependency>
144+
<groupId>org.junit.jupiter</groupId>
145+
<artifactId>junit-jupiter-api</artifactId>
146+
<version>5.11.4</version>
147+
</dependency>
148+
<dependency>
149+
<groupId>org.junit.jupiter</groupId>
150+
<artifactId>junit-jupiter-engine</artifactId>
151+
<version>5.11.4</version>
152+
</dependency>
153+
<dependency>
154+
<groupId>org.junit.jupiter</groupId>
155+
<artifactId>junit-jupiter-params</artifactId>
156+
<version>5.11.4</version>
142157
</dependency>
143158
<dependency>
144159
<groupId>org.testcontainers</groupId>

spring-boot-examples/consumer-app/pom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
<groupId>org.springframework.boot</groupId>
1818
<artifactId>spring-boot-dependencies</artifactId>
1919
<type>pom</type>
20-
<scope>import</scope>
2120
</dependency>
2221
<dependency>
2322
<groupId>org.springframework.boot</groupId>

spring-boot-examples/producer-app/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,6 @@
4141
<artifactId>dapr-spring-boot-starter-test</artifactId>
4242
<scope>test</scope>
4343
</dependency>
44-
<dependency>
45-
<groupId>org.testcontainers</groupId>
46-
<artifactId>junit-jupiter</artifactId>
47-
<scope>test</scope>
48-
</dependency>
4944
<dependency>
5045
<groupId>org.testcontainers</groupId>
5146
<artifactId>postgresql</artifactId>

0 commit comments

Comments
 (0)