Skip to content

Commit fceee06

Browse files
authored
Update pom.xml
1 parent e6f271a commit fceee06

File tree

1 file changed

+20
-17
lines changed

1 file changed

+20
-17
lines changed

pom.xml

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,8 @@
3030
<dependencies>
3131
<dependency>
3232
<groupId>org.junit.jupiter</groupId>
33-
<artifactId>junit-jupiter-api</artifactId>
34-
<scope>test</scope>
35-
</dependency>
36-
<dependency>
37-
<groupId>org.junit.jupiter</groupId>
38-
<artifactId>junit-jupiter-engine</artifactId>
33+
<artifactId>junit-jupiter</artifactId>
34+
<version>5.11.2</version>
3935
<scope>test</scope>
4036
</dependency>
4137
<dependency>
@@ -44,6 +40,13 @@
4440
<version>${assertj.version}</version>
4541
<scope>test</scope>
4642
</dependency>
43+
44+
<dependency>
45+
<groupId>org.junit.jupiter</groupId>
46+
<artifactId>junit-jupiter-api</artifactId>
47+
<version>5.11.2</version>
48+
<scope>test</scope>
49+
</dependency>
4750
<dependency>
4851
<groupId>org.apache.commons</groupId>
4952
<artifactId>commons-lang3</artifactId>
@@ -58,10 +61,17 @@
5861

5962
<build>
6063
<plugins>
64+
<plugin>
65+
<artifactId>maven-surefire-plugin</artifactId>
66+
<version>3.5.1</version>
67+
<configuration>
68+
<forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/>
69+
</configuration>
70+
</plugin>
6171
<plugin>
6272
<groupId>org.apache.maven.plugins</groupId>
6373
<artifactId>maven-compiler-plugin</artifactId>
64-
<version>3.10.1</version> <!-- Updated version -->
74+
<version>3.13.0</version>
6575
<configuration>
6676
<source>21</source>
6777
<target>21</target>
@@ -75,13 +85,6 @@
7585
</compilerArgs>
7686
</configuration>
7787
</plugin>
78-
<plugin>
79-
<artifactId>maven-surefire-plugin</artifactId>
80-
<version>3.0.0-M5</version> <!-- Updated version -->
81-
<configuration>
82-
<forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/>
83-
</configuration>
84-
</plugin>
8588
<plugin>
8689
<groupId>org.jacoco</groupId>
8790
<artifactId>jacoco-maven-plugin</artifactId>
@@ -113,9 +116,9 @@
113116
</configuration>
114117
<dependencies>
115118
<dependency>
116-
<groupId>com.puppycrawl.tools</groupId>
117-
<artifactId>checkstyle</artifactId>
118-
<version>10.18.2</version>
119+
<groupId>com.puppycrawl.tools</groupId>
120+
<artifactId>checkstyle</artifactId>
121+
<version>10.18.2</version>
119122
</dependency>
120123
</dependencies>
121124
</plugin>

0 commit comments

Comments
 (0)