Skip to content

Commit 418a3a6

Browse files
authored
HBASE-29979 Remove JUnit5 related dependencies in hbase-protocol-shaded (#7885)
Signed-off-by: Duo Zhang <zhangduo@apache.org>
1 parent 8d89599 commit 418a3a6

File tree

1 file changed

+3
-33
lines changed

1 file changed

+3
-33
lines changed

hbase-protocol-shaded/pom.xml

Lines changed: 3 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -41,26 +41,6 @@
4141
<groupId>org.apache.hbase.thirdparty</groupId>
4242
<artifactId>hbase-shaded-protobuf</artifactId>
4343
</dependency>
44-
<dependency>
45-
<groupId>org.junit.jupiter</groupId>
46-
<artifactId>junit-jupiter-api</artifactId>
47-
<scope>test</scope>
48-
</dependency>
49-
<dependency>
50-
<groupId>org.junit.jupiter</groupId>
51-
<artifactId>junit-jupiter-engine</artifactId>
52-
<scope>test</scope>
53-
</dependency>
54-
<dependency>
55-
<groupId>org.junit.jupiter</groupId>
56-
<artifactId>junit-jupiter-params</artifactId>
57-
<scope>test</scope>
58-
</dependency>
59-
<dependency>
60-
<groupId>org.junit.vintage</groupId>
61-
<artifactId>junit-vintage-engine</artifactId>
62-
<scope>test</scope>
63-
</dependency>
6444
</dependencies>
6545
<build>
6646
<plugins>
@@ -73,19 +53,9 @@
7353
</plugin>
7454
<plugin>
7555
<artifactId>maven-surefire-plugin</artifactId>
76-
<!-- Always skip the second part executions, since we only run simple unit tests in this module -->
77-
<executions>
78-
<execution>
79-
<id>secondPartTestsExecution</id>
80-
<goals>
81-
<goal>test</goal>
82-
</goals>
83-
<phase>test</phase>
84-
<configuration>
85-
<skip>true</skip>
86-
</configuration>
87-
</execution>
88-
</executions>
56+
<configuration>
57+
<skipTests>true</skipTests>
58+
</configuration>
8959
</plugin>
9060
<plugin>
9161
<groupId>org.xolstice.maven.plugins</groupId>

0 commit comments

Comments
 (0)