Skip to content

Commit a022b6a

Browse files
authored
Update pom.xml
1 parent 4e42137 commit a022b6a

File tree

1 file changed

+12
-21
lines changed

1 file changed

+12
-21
lines changed

pom.xml

Lines changed: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,12 @@
3030
<dependencies>
3131
<dependency>
3232
<groupId>org.junit.jupiter</groupId>
33-
<artifactId>junit-jupiter</artifactId>
34-
<version>5.11.2</version>
33+
<artifactId>junit-jupiter-api</artifactId>
3534
<scope>test</scope>
3635
</dependency>
3736
<dependency>
3837
<groupId>org.junit.jupiter</groupId>
3938
<artifactId>junit-jupiter-engine</artifactId>
40-
<version>5.11.2</version>
4139
<scope>test</scope>
4240
</dependency>
4341
<dependency>
@@ -46,13 +44,6 @@
4644
<version>${assertj.version}</version>
4745
<scope>test</scope>
4846
</dependency>
49-
50-
<dependency>
51-
<groupId>org.junit.jupiter</groupId>
52-
<artifactId>junit-jupiter-api</artifactId>
53-
<version>5.11.2</version>
54-
<scope>test</scope>
55-
</dependency>
5647
<dependency>
5748
<groupId>org.apache.commons</groupId>
5849
<artifactId>commons-lang3</artifactId>
@@ -67,17 +58,10 @@
6758

6859
<build>
6960
<plugins>
70-
<plugin>
71-
<artifactId>maven-surefire-plugin</artifactId>
72-
<version>3.5.1</version>
73-
<configuration>
74-
<forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/>
75-
</configuration>
76-
</plugin>
7761
<plugin>
7862
<groupId>org.apache.maven.plugins</groupId>
7963
<artifactId>maven-compiler-plugin</artifactId>
80-
<version>3.13.0</version>
64+
<version>3.10.1</version> <!-- Updated version -->
8165
<configuration>
8266
<source>21</source>
8367
<target>21</target>
@@ -91,6 +75,13 @@
9175
</compilerArgs>
9276
</configuration>
9377
</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>
9485
<plugin>
9586
<groupId>org.jacoco</groupId>
9687
<artifactId>jacoco-maven-plugin</artifactId>
@@ -122,9 +113,9 @@
122113
</configuration>
123114
<dependencies>
124115
<dependency>
125-
<groupId>com.puppycrawl.tools</groupId>
126-
<artifactId>checkstyle</artifactId>
127-
<version>10.18.2</version>
116+
<groupId>com.puppycrawl.tools</groupId>
117+
<artifactId>checkstyle</artifactId>
118+
<version>10.18.2</version>
128119
</dependency>
129120
</dependencies>
130121
</plugin>

0 commit comments

Comments
 (0)