Skip to content

Commit a239660

Browse files
committed
[Examples] Run tests in spring-txn
Fixes: #1916
1 parent 95e0f82 commit a239660

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

examples/spring-txn/pom.xml

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23
<modelVersion>4.0.0</modelVersion>
34

45
<parent>
@@ -84,6 +85,16 @@
8485
<artifactId>junit-vintage-engine</artifactId>
8586
<scope>test</scope>
8687
</dependency>
88+
<!--
89+
Spring doesn't include the right version for surefire to pickup
90+
TODO: Remove once the surefire or spring is upgraded
91+
-->
92+
<dependency>
93+
<groupId>org.junit.platform</groupId>
94+
<artifactId>junit-platform-commons</artifactId>
95+
<version>${junit-platform.version}</version>
96+
<scope>test</scope>
97+
</dependency>
8798
</dependencies>
8899

89100
<build>

0 commit comments

Comments
 (0)