8000 Merge pull request #196 from sullis/surefire-3.0.0-M5 · rinaldodev/java-operator-sdk@75a8196 · GitHub
[go: up one dir, main page]

Skip to content

Commit 75a8196

Browse files
authored
Merge pull request operator-framework#196 from sullis/surefire-3.0.0-M5
maven-surefire-plugin 3.0.0-M5
2 parents 67a0182 + 7131817 commit 75a8196

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

operator-framework/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<plugin>
2626
<groupId>org.apache.maven.plugins</groupId>
2727
<artifactId>maven-surefire-plugin</artifactId>
28-
<version>2.22.2</version>
28+
<version>${surefire.version}</version>
2929
</plugin>
3030
</plugins>
3131
</build>

pom.xml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737
<properties>
3838
<junit.version>5.7.0</junit.version>
39+
<surefire.version>3.0.0-M5</surefire.version>
3940
</properties>
4041

4142
<modules>
@@ -80,6 +81,12 @@
8081
<version>${junit.version}</version>
8182
<scope>test</scope>
8283
</dependency>
84+
<dependency>
85+
<groupId>org.junit.platform</groupId>
86+
<artifactId>junit-platform-commons</artifactId>
87+
<version>1.7.0</version>
88+
<scope>test</scope>
89+
</dependency>
8390
<dependency>
8491
<groupId>org.apache.logging.log4j</groupId>
8592
<artifactId>log4j-slf4j-impl</artifactId>
@@ -112,7 +119,7 @@
112119
<plugin>
113120
<groupId>org.apache.maven.plugins</groupId>
114121
<artifactId>maven-surefire-plugin</artifactId>
115-
<version>2.22.2</version>
122+
<version>${surefire.version}</version>
116123
<configuration>
117124
<includes>
118125
<include>**/*IT.java</include>
@@ -131,7 +138,7 @@
131138
<plugin>
132139
<groupId>org.apache.maven.plugins</groupId>
133140
<artifactId>maven-surefire-plugin</artifactId>
134-
<version>2.22.2</version>
141+
<version>${surefire.version}</version>
135142
<configuration>
136143
<includes>
137144
<include>**/*Test.java</include>
@@ -151,7 +158,7 @@
151158
<plugin>
152159
<groupId>org.apache.maven.plugins</groupId>
153160
<artifactId>maven-surefire-plugin</artifactId>
154-
<version>2.22.2</version>
161+
<version>${surefire.version}</version>
155162
<configuration>
156163
<excludes>
157164
<exclude>**/*IT.java</exclude>

spring-boot-starter/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<plugin>
2626
<groupId>org.apache.maven.plugins</groupId>
2727
<artifactId>maven-surefire-plugin</artifactId>
28-
<version>2.22.2</version>
28+
<version>${surefire.version}</version>
2929
</plugin>
3030
<plugin>
3131
<groupId>org.springframework.boot</groupId>
@@ -81,6 +81,11 @@
8181
<artifactId>junit-jupiter-engine</artifactId>
8282
<scope>test</scope>
8383
</dependency>
84+
<dependency>
85+
<groupId>org.junit.platform</groupId>
86+
<artifactId>junit-platform-commons</artifactId>
87+
<scope>test</scope>
88+
</dependency>
8489
<dependency>
8590
<groupId>com.github.containersolutions</groupId>
8691
<artifactId>operator-framework</artifactId>

0 commit comments

Comments
 (0)
0