Skip to content

Commit 1921247

Browse files
committed
Fix deps
Signed-off-by: siri-varma <[email protected]>
1 parent 250d17e commit 1921247

File tree

4 files changed

+63
-5
lines changed

4 files changed

+63
-5
lines changed

dapr-spring/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,22 @@
4646
<dependency>
4747
<groupId>org.junit.jupiter</groupId>
4848
<artifactId>junit-jupiter-api</artifactId>
49-
<version>5.8.2</version>
49+
<version>5.10.2</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>org.junit.jupiter</groupId>
5353
<artifactId>junit-jupiter-params</artifactId>
54-
<version>5.8.2</version>
54+
<version>5.10.2</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>org.junit.jupiter</groupId>
5858
<artifactId>junit-jupiter-engine</artifactId>
59-
<version>5.8.2</version>
59+
<version>5.10.2</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>org.junit.jupiter</groupId>
6363
<artifactId>junit-jupiter</artifactId>
64-
<version>5.8.2</version>
64+
<version>5.10.2</version>
6565
</dependency>
6666
</dependencies>
6767
</dependencyManagement>

pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,21 @@
214214
<artifactId>spring-boot-starter-test</artifactId>
215215
<version>${springboot.version}</version>
216216
</dependency>
217+
<dependency>
218+
<groupId>org.springframework.data</groupId>
219+
<artifactId>spring-data-keyvalue</artifactId>
220+
<version>${springboot.version}</version>
221+
</dependency>
222+
<dependency>
223+
<groupId>org.springframework.data</groupId>
224+
<artifactId>spring-data-commons</artifactId>
225+
<version>${springboot.version}</version>
226+
</dependency>
227+
<dependency>
228+
<groupId>org.springframework.boot</groupId>
229+
<artifactId>spring-boot-testcontainers</artifactId>
230+
<version>${springboot.version}</version>
231+
</dependency>
217232
</dependencies>
218233
</dependencyManagement>
219234

sdk-tests/components/secret.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

sdk-tests/pom.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<logback-core.version>1.5.16</logback-core.version>
3434
<wiremock.version>3.9.1</wiremock.version>
3535
<testcontainers-test.version>1.20.0</testcontainers-test.version>
36+
<jacoco-maven-plugin.coverage-ratio>0%</jacoco-maven-plugin.coverage-ratio>
3637
</properties>
3738

3839
<dependencyManagement>
@@ -234,6 +235,49 @@
234235

235236
<build>
236237
<plugins>
238+
<plugin>
239+
<groupId>org.jacoco</groupId>
240+
<artifactId>jacoco-maven-plugin</artifactId>
241+
<version>${jacoco-maven-plugin.version}</version>
242+
<executions>
243+
<execution>
244+
<id>default-prepare-agent</id>
245+
<goals>
246+
<goal>prepare-agent</goal>
247+
</goals>
248+
</execution>
249+
<execution>
250+
<id>report</id>
251+
<phase>test</phase>
252+
<goals>
253+
<goal>report</goal>
254+
</goals>
255+
<configuration>
256+
<outputDirectory>target/jacoco-report/</outputDirectory>
257+
</configuration>
258+
</execution>
259+
<execution>
260+
<id>check</id>
261+
<goals>
262+
<goal>check</goal>
263+
</goals>
264+
<configuration>
265+
<rules>
266+
<rule>
267+
<element>BUNDLE</element>
268+
<limits>
269+
<limit>
270+
<counter>LINE</counter>
271+
<value>COVEREDRATIO</value>
272+
<minimum>${jacoco-maven-plugin.coverage-ratio}</minimum>
273+
</limit>
274+
</limits>
275+
</rule>
276+
</rules>
277+
</configuration>
278+
</execution>
279+
</executions>
280+
</plugin>
237281
<plugin>
238282
<groupId>com.github.os72</groupId>
239283
<artifactId>protoc-jar-maven-plugin</artifactId>

0 commit comments

Comments
 (0)