Skip to content

Commit 4a53f54

Browse files
committed
Set compiler and surefire plugin versions, fix warnings in pom
1 parent cfd1fcf commit 4a53f54

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

pom.xml

+7-8
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,17 @@
1313
<plugin>
1414
<groupId>org.apache.maven.plugins</groupId>
1515
<artifactId>maven-compiler-plugin</artifactId>
16+
<version>3.8.1</version>
1617
<configuration>
1718
<source>8</source>
1819
<target>8</target>
1920
</configuration>
2021
</plugin>
22+
<plugin>
23+
<groupId>org.apache.maven.plugins</groupId>
24+
<artifactId>maven-surefire-plugin</artifactId>
25+
<version>2.22.2</version>
26+
</plugin>
2127
<plugin>
2228
<artifactId>maven-assembly-plugin</artifactId>
2329
<configuration>
@@ -69,7 +75,7 @@
6975
<dependency>
7076
<groupId>org.junit.jupiter</groupId>
7177
<artifactId>junit-jupiter</artifactId>
72-
<version>RELEASE</version>
78+
<version>5.5.2</version>
7379
<scope>test</scope>
7480
</dependency>
7581
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
@@ -90,13 +96,6 @@
9096
<artifactId>hsqldb</artifactId>
9197
<version>1.8.0.10</version>
9298
</dependency>
93-
<dependency>
94-
<groupId>hsqldb</groupId>
95-
<artifactId>hsqldb</artifactId>
96-
<version>1.8.0.10</version>
97-
</dependency>
98-
99-
10099
</dependencies>
101100

102101

0 commit comments

Comments
 (0)