|
28 | 28 | <commons.beanutils.version>1.9.3</commons.beanutils.version>
|
29 | 29 | <commons.lang3.version>3.10</commons.lang3.version>
|
30 | 30 | <google.guava.version>28.1-jre</google.guava.version>
|
| 31 | + |
| 32 | + <junit.jupiter.version>5.6.2</junit.jupiter.version> |
31 | 33 | </properties>
|
32 | 34 |
|
33 | 35 | <dependencies>
|
|
67 | 69 | <dependency>
|
68 | 70 | <groupId>org.junit.jupiter</groupId>
|
69 | 71 | <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> |
71 | 79 | <scope>test</scope>
|
72 | 80 | </dependency>
|
73 | 81 |
|
|
126 | 134 | <source>${maven.compile.source}</source>
|
127 | 135 | <target>${maven.compile.target}</target>
|
128 | 136 | <encoding>${project.build.sourceEncoding}</encoding>
|
129 |
| - <compilerArgument>-Xlint:deprecation</compilerArgument> |
130 | 137 | </configuration>
|
131 | 138 | </plugin>
|
132 | 139 |
|
133 | 140 | <plugin>
|
| 141 | + <groupId>org.apache.maven.plugins</groupId> |
134 | 142 | <artifactId>maven-surefire-plugin</artifactId>
|
135 | 143 | <version>2.22.2</version>
|
136 | 144 | </plugin>
|
|
158 | 166 | <plugin>
|
159 | 167 | <groupId>org.jacoco</groupId>
|
160 | 168 | <artifactId>jacoco-maven-plugin</artifactId>
|
161 |
| - <version>0.8.2</version> |
| 169 | + <version>0.8.5</version> |
162 | 170 | <executions>
|
163 | 171 | <execution>
|
164 | 172 | <goals>
|
|
179 | 187 | <plugin>
|
180 | 188 | <groupId>org.openclover</groupId>
|
181 | 189 | <artifactId>clover-maven-plugin</artifactId>
|
182 |
| - <version>4.3.1</version> |
| 190 | + <version>4.4.1</version> |
183 | 191 | <configuration>
|
184 | 192 | <generateHtml>true</generateHtml>
|
185 | 193 | <generateXml>true</generateXml>
|
|
0 commit comments