Skip to content

Commit a956c8d

Browse files
committed
test
1 parent 93d880c commit a956c8d

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

pom.xml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
<commons.beanutils.version>1.9.3</commons.beanutils.version>
2929
<commons.lang3.version>3.10</commons.lang3.version>
3030
<google.guava.version>28.1-jre</google.guava.version>
31+
32+
<junit.jupiter.version>5.6.2</junit.jupiter.version>
3133
</properties>
3234

3335
<dependencies>
@@ -67,7 +69,13 @@
6769
<dependency>
6870
<groupId>org.junit.jupiter</groupId>
6971
<artifactId>junit-jupiter-api</artifactId>
70-
<version>5.6.2</version>
72+
<version>${junit.jupiter.version}</version>
73+
<scope>test</scope>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.junit.jupiter</groupId>
77+
<artifactId>junit-jupiter-engine</artifactId>
78+
<version>${junit.jupiter.version}</version>
7179
<scope>test</scope>
7280
</dependency>
7381

@@ -126,11 +134,11 @@
126134
<source>${maven.compile.source}</source>
127135
<target>${maven.compile.target}</target>
128136
<encoding>${project.build.sourceEncoding}</encoding>
129-
<compilerArgument>-Xlint:deprecation</compilerArgument>
130137
</configuration>
131138
</plugin>
132139

133140
<plugin>
141+
<groupId>org.apache.maven.plugins</groupId>
134142
<artifactId>maven-surefire-plugin</artifactId>
135143
<version>2.22.2</version>
136144
</plugin>
@@ -158,7 +166,7 @@
158166
<plugin>
159167
<groupId>org.jacoco</groupId>
160168
<artifactId>jacoco-maven-plugin</artifactId>
161-
<version>0.8.2</version>
169+
<version>0.8.5</version>
162170
<executions>
163171
<execution>
164172
<goals>
@@ -179,7 +187,7 @@
179187
<plugin>
180188
<groupId>org.openclover</groupId>
181189
<artifactId>clover-maven-plugin</artifactId>
182-
<version>4.3.1</version>
190+
<version>4.4.1</version>
183191
<configuration>
184192
<generateHtml>true</generateHtml>
185193
<generateXml>true</generateXml>

0 commit comments

Comments
 (0)