|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>io.github.willena</groupId> |
6 | 6 | <artifactId>sqlite-jdbc</artifactId> |
7 | | - <version>3.46.1.1-SNAPSHOT</version> |
| 7 | + <version>3.47.0.0-SNAPSHOT</version> |
8 | 8 | <name>SQLite JDBC</name> |
9 | 9 | <description>SQLite JDBC library with encryption and authentication support</description> |
10 | 10 | <url>https://github.com/Willena/sqlite-jdbc-crypt</url> |
11 | 11 |
|
12 | 12 | <properties> |
13 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
14 | | - <junit.version>5.10.3</junit.version> |
15 | | - <surefire.version>3.3.1</surefire.version> |
| 14 | + <junit.version>5.11.3</junit.version> |
| 15 | + <surefire.version>3.5.2</surefire.version> |
16 | 16 | <archunit.version>1.3.0</archunit.version> |
17 | | - <graalvm.version>24.0.2</graalvm.version> |
| 17 | + <graalvm.version>24.1.1</graalvm.version> |
18 | 18 | <java9.sourceDirectory>${project.basedir}/src/main/java9</java9.sourceDirectory> |
19 | 19 | </properties> |
20 | 20 |
|
|
93 | 93 | <plugin> |
94 | 94 | <groupId>org.apache.maven.plugins</groupId> |
95 | 95 | <artifactId>maven-help-plugin</artifactId> |
96 | | - <version>3.4.1</version> |
| 96 | + <version>3.5.1</version> |
97 | 97 | </plugin> |
98 | 98 |
|
99 | 99 | <plugin> |
|
280 | 280 | <plugin> |
281 | 281 | <groupId>org.apache.maven.plugins</groupId> |
282 | 282 | <artifactId>maven-gpg-plugin</artifactId> |
283 | | - <version>3.2.5</version> |
| 283 | + <version>3.2.7</version> |
284 | 284 | <configuration> |
285 | 285 | <!-- Prevent gpg from using pinentry programs --> |
286 | 286 | <gpgArguments> |
|
301 | 301 | <plugin> |
302 | 302 | <groupId>org.apache.maven.plugins</groupId> |
303 | 303 | <artifactId>maven-javadoc-plugin</artifactId> |
304 | | - <version>3.8.0</version> |
| 304 | + <version>3.11.1</version> |
305 | 305 | <configuration> |
306 | 306 | <sourcepath>src/main/java</sourcepath> |
307 | 307 | <additionalOptions>-Xdoclint:none</additionalOptions> |
|
340 | 340 | <plugin> |
341 | 341 | <groupId>org.graalvm.buildtools</groupId> |
342 | 342 | <artifactId>native-maven-plugin</artifactId> |
343 | | - <version>0.10.2</version> |
| 343 | + <version>0.10.3</version> |
344 | 344 | <extensions>true</extensions> |
345 | 345 | <executions> |
346 | 346 | <execution> |
|
354 | 354 | <configuration> |
355 | 355 | <fallback>false</fallback> |
356 | 356 | <verbose>true</verbose> |
| 357 | + <buildArgs> |
| 358 | + <!-- required to allow junit-pioneer to compile with strict image heap enabled --> |
| 359 | + <arg>--initialize-at-build-time=org.junitpioneer.jupiter.issue.IssueExtensionExecutionListener</arg> |
| 360 | + </buildArgs> |
357 | 361 | </configuration> |
358 | 362 | </plugin> |
359 | 363 |
|
|
413 | 417 | <groupId>org.slf4j</groupId> |
414 | 418 | <artifactId>slf4j-api</artifactId> |
415 | 419 | <version>1.7.36</version> |
| 420 | + <optional>true</optional> |
416 | 421 | </dependency> |
417 | 422 | <!-- |
418 | 423 | This dependency makes compilation on non-GraalVM versions possible. |
|
450 | 455 | <dependency> |
451 | 456 | <groupId>org.junit-pioneer</groupId> |
452 | 457 | <artifactId>junit-pioneer</artifactId> |
453 | | - <version>2.2.0</version> |
| 458 | + <version>2.3.0</version> |
454 | 459 | <scope>test</scope> |
455 | 460 | </dependency> |
456 | 461 | <dependency> |
457 | 462 | <groupId>org.mockito</groupId> |
458 | 463 | <artifactId>mockito-core</artifactId> |
459 | | - <version>5.12.0</version> |
| 464 | + <version>5.14.2</version> |
460 | 465 | <scope>test</scope> |
461 | 466 | </dependency> |
462 | 467 | <dependency> |
|
0 commit comments