Skip to content

Commit 1afd27a

Browse files
svegiraju-microsoftsiri-varma
authored andcommitted
cleanup
Signed-off-by: Siri Varma Vegiraju <[email protected]> Signed-off-by: siri-varma <[email protected]>
1 parent f0b7eef commit 1afd27a

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

dapr-spring/dapr-spring-boot-autoconfigure/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,26 @@
5757
<artifactId>testcontainers</artifactId>
5858
<scope>test</scope>
5959
</dependency>
60+
<dependency>
61+
<groupId>org.junit.jupiter</groupId>
62+
<artifactId>junit-jupiter</artifactId>
63+
<scope>test</scope>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.junit.jupiter</groupId>
67+
<artifactId>junit-jupiter-api</artifactId>
68+
<scope>test</scope>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.junit.jupiter</groupId>
72+
<artifactId>junit-jupiter-params</artifactId>
73+
<scope>test</scope>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.junit.jupiter</groupId>
77+
<artifactId>junit-jupiter-engine</artifactId>
78+
<scope>test</scope>
79+
</dependency>
6080
<dependency>
6181
<groupId>org.testcontainers</groupId>
6282
<artifactId>junit-jupiter</artifactId>

dapr-spring/pom.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</modules>
2929

3030
<properties>
31-
<springboot.version>3.4.3</springboot.version>
31+
<springboot.version>3.2.6</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>
@@ -43,6 +43,26 @@
4343
<type>pom</type>
4444
<scope>import</scope>
4545
</dependency>
46+
<dependency>
47+
<groupId>org.junit.jupiter</groupId>
48+
<artifactId>junit-jupiter-api</artifactId>
49+
<version>5.8.2</version>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.junit.jupiter</groupId>
53+
<artifactId>junit-jupiter-params</artifactId>
54+
<version>5.8.2</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.junit.jupiter</groupId>
58+
<artifactId>junit-jupiter-engine</artifactId>
59+
<version>5.8.2</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.junit.jupiter</groupId>
63+
<artifactId>junit-jupiter</artifactId>
64+
<version>5.8.2</version>
65+
</dependency>
4666
</dependencies>
4767
</dependencyManagement>
4868

@@ -73,13 +93,15 @@
7393
<dependency>
7494
<groupId>org.springframework.boot</groupId>
7595
<artifactId>spring-boot-configuration-processor</artifactId>
96+
<version>${springboot.version}</version>
7697
<optional>true</optional>
7798
</dependency>
7899

79100
<!-- Test dependencies -->
80101
<dependency>
81102
<groupId>org.springframework.boot</groupId>
82103
<artifactId>spring-boot-starter-test</artifactId>
104+
<version>${springboot.version}</version>
83105
<scope>test</scope>
84106
</dependency>
85107
<dependency>

0 commit comments

Comments
 (0)