|
38 | 38 |
|
39 | 39 | <properties>
|
40 | 40 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
41 |
| - <jicoco.version>1.1-95-gd8fd866</jicoco.version> |
| 41 | + <jicoco.version>1.1-104-g20c4353</jicoco.version> |
42 | 42 | <kotlin.version>1.5.31</kotlin.version>
|
43 |
| - <kotest.version>4.6.3</kotest.version> |
44 |
| - <junit.version>5.8.1</junit.version> |
| 43 | + <kotest.version>5.3.0</kotest.version> |
| 44 | + <junit.version>5.8.2</junit.version> |
45 | 45 | </properties>
|
46 | 46 |
|
47 | 47 | <dependencies>
|
|
70 | 70 | <dependency>
|
71 | 71 | <groupId>org.junit.platform</groupId>
|
72 | 72 | <artifactId>junit-platform-launcher</artifactId>
|
73 |
| - <version>1.8.1</version> |
| 73 | + <version>1.8.2</version> |
74 | 74 | <scope>test</scope>
|
75 | 75 | </dependency>
|
76 | 76 | <dependency>
|
|
106 | 106 | <dependency>
|
107 | 107 | <groupId>org.mockito</groupId>
|
108 | 108 | <artifactId>mockito-core</artifactId>
|
109 |
| - <version>4.0.0</version> |
| 109 | + <version>4.5.1</version> |
110 | 110 | <scope>test</scope>
|
111 | 111 | </dependency>
|
112 | 112 | </dependencies>
|
|
146 | 146 | </execution>
|
147 | 147 | </executions>
|
148 | 148 | <configuration>
|
149 |
| - <jvmTarget>1.8</jvmTarget> |
| 149 | + <jvmTarget>11</jvmTarget> |
150 | 150 | <args>
|
151 | 151 | <arg>-Xallow-result-return-type</arg>
|
152 | 152 | </args>
|
|
155 | 155 | <plugin>
|
156 | 156 | <groupId>org.apache.maven.plugins</groupId>
|
157 | 157 | <artifactId>maven-compiler-plugin</artifactId>
|
158 |
| - <version>3.8.1</version> |
| 158 | + <version>3.10.1</version> |
159 | 159 | <executions>
|
160 | 160 | <!-- Replacing default-compile as it is treated specially by maven -->
|
161 | 161 | <execution>
|
|
183 | 183 | </execution>
|
184 | 184 | </executions>
|
185 | 185 | <configuration>
|
186 |
| - <source>1.8</source> |
187 |
| - <target>1.8</target> |
| 186 | + <release>11</release> |
188 | 187 | <compilerArgs>
|
189 | 188 | <arg>-Xlint:all</arg>
|
190 | 189 | </compilerArgs>
|
|
193 | 192 | <plugin>
|
194 | 193 | <groupId>org.apache.maven.plugins</groupId>
|
195 | 194 | <artifactId>maven-checkstyle-plugin</artifactId>
|
196 |
| - <version>3.1.1</version> |
| 195 | + <version>3.1.2</version> |
197 | 196 | <configuration>
|
198 | 197 | <configLocation>checkstyle.xml</configLocation>
|
199 | 198 | </configuration>
|
| 199 | + <dependencies> |
| 200 | + <dependency> |
| 201 | + <groupId>com.puppycrawl.tools</groupId> |
| 202 | + <artifactId>checkstyle</artifactId> |
| 203 | + <version>10.1</version> |
| 204 | + </dependency> |
| 205 | + </dependencies> |
200 | 206 | <executions>
|
201 | 207 | <execution>
|
202 | 208 | <goals>
|
|
208 | 214 | <plugin>
|
209 | 215 | <groupId>com.github.gantsign.maven</groupId>
|
210 | 216 | <artifactId>ktlint-maven-plugin</artifactId>
|
211 |
| - <version>1.7.0</version> |
| 217 | + <version>1.13.1</version> |
212 | 218 | <configuration>
|
213 | 219 | <sourceRoots>
|
214 | 220 | <sourceRoot>${project.basedir}/src/main/kotlin</sourceRoot>
|
|
229 | 235 | <plugin>
|
230 | 236 | <groupId>biz.aQute.bnd</groupId>
|
231 | 237 | <artifactId>bnd-maven-plugin</artifactId>
|
232 |
| - <version>5.2.0</version> |
| 238 | + <version>6.2.0</version> |
233 | 239 | <executions>
|
234 | 240 | <execution>
|
235 | 241 | <goals>
|
|
241 | 247 | <plugin>
|
242 | 248 | <groupId>org.apache.maven.plugins</groupId>
|
243 | 249 | <artifactId>maven-jar-plugin</artifactId>
|
244 |
| - <version>3.2.0</version> |
| 250 | + <version>3.2.2</version> |
245 | 251 | <configuration>
|
246 | 252 | <archive>
|
247 | 253 | <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
|
251 | 257 | <plugin>
|
252 | 258 | <groupId>org.apache.maven.plugins</groupId>
|
253 | 259 | <artifactId>maven-surefire-plugin</artifactId>
|
254 |
| - <version>2.22.2</version> |
| 260 | + <version>3.0.0-M6</version> |
255 | 261 | <configuration>
|
256 | 262 | <includes>**/*</includes>
|
257 | 263 | <systemPropertyVariables>
|
|
262 | 268 | <plugin>
|
263 | 269 | <groupId>org.apache.maven.plugins</groupId>
|
264 | 270 | <artifactId>maven-deploy-plugin</artifactId>
|
265 |
| - <version>2.8.2</version> |
| 271 | + <version>3.0.0-M2</version> |
266 | 272 | </plugin>
|
267 | 273 | <plugin>
|
268 | 274 | <groupId>org.sonatype.plugins</groupId>
|
269 | 275 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
270 |
| - <version>1.6.8</version> |
| 276 | + <version>1.6.13</version> |
271 | 277 | <extensions>true</extensions>
|
272 | 278 | <configuration>
|
273 | 279 | <serverId>ossrh</serverId>
|
|
282 | 288 | <plugin>
|
283 | 289 | <groupId>org.codehaus.mojo</groupId>
|
284 | 290 | <artifactId>exec-maven-plugin</artifactId>
|
| 291 | + <version>3.0.0</version> |
285 | 292 | <executions>
|
286 | 293 | <execution>
|
287 | 294 | <goals>
|
|
311 | 318 | <plugin>
|
312 | 319 | <groupId>org.jacoco</groupId>
|
313 | 320 | <artifactId>jacoco-maven-plugin</artifactId>
|
314 |
| - <version>0.8.7</version> |
| 321 | + <version>0.8.8</version> |
315 | 322 | <executions>
|
316 | 323 | <execution>
|
317 | 324 | <goals>
|
|
448 | 455 | <plugin>
|
449 | 456 | <groupId>org.codehaus.mojo</groupId>
|
450 | 457 | <artifactId>build-helper-maven-plugin</artifactId>
|
451 |
| - <version>3.2.0</version> |
| 458 | + <version>3.3.0</version> |
452 | 459 | <executions>
|
453 | 460 | <execution>
|
454 | 461 | <phase>generate-sources</phase>
|
|
493 | 500 | <plugin>
|
494 | 501 | <groupId>org.apache.maven.plugins</groupId>
|
495 | 502 | <artifactId>maven-gpg-plugin</artifactId>
|
496 |
| - <version>1.6</version> |
| 503 | + <version>3.0.1</version> |
497 | 504 | <executions>
|
498 | 505 | <execution>
|
499 | 506 | <id>sign-artifacts</id>
|
|
0 commit comments