|
11 | 11 | <properties>
|
12 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
13 | 13 | <!-- setting `release` doesn't work because of the `add-opens` below -->
|
14 |
| - <maven.compiler.source>18</maven.compiler.source> |
15 |
| - <maven.compiler.target>18</maven.compiler.target> |
| 14 | + <maven.compiler.source>21</maven.compiler.source> |
| 15 | + <maven.compiler.target>21</maven.compiler.target> |
16 | 16 | </properties>
|
17 | 17 |
|
18 | 18 | <dependencyManagement>
|
19 | 19 | <dependencies>
|
20 | 20 | <dependency>
|
21 | 21 | <groupId>org.junit</groupId>
|
22 | 22 | <artifactId>junit-bom</artifactId>
|
23 |
| - <version>5.8.2</version> |
| 23 | + <version>5.10.0</version> |
24 | 24 | <type>pom</type>
|
25 | 25 | <scope>import</scope>
|
26 | 26 | </dependency>
|
|
31 | 31 | <dependency>
|
32 | 32 | <groupId>org.openjfx</groupId>
|
33 | 33 | <artifactId>javafx-base</artifactId>
|
34 |
| - <version>18</version> |
| 34 | + <version>21.0.1</version> |
35 | 35 | </dependency>
|
36 | 36 | <dependency>
|
37 | 37 | <groupId>org.openjfx</groupId>
|
38 | 38 | <artifactId>javafx-controls</artifactId>
|
39 |
| - <version>18</version> |
| 39 | + <version>21.0.1</version> |
40 | 40 | </dependency>
|
41 | 41 |
|
42 | 42 | <dependency>
|
|
53 | 53 | <plugins>
|
54 | 54 | <plugin>
|
55 | 55 | <artifactId>maven-compiler-plugin</artifactId>
|
56 |
| - <version>3.10.1</version> |
| 56 | + <version>3.11.0</version> |
57 | 57 | <configuration>
|
58 | 58 | <!-- needed for preview language features (like pattern switches were in Java 18) -->
|
59 | 59 | <enablePreview>true</enablePreview>
|
|
69 | 69 | <!-- add the demo folder to the sources, so it gets compiled and tested -->
|
70 | 70 | <groupId>org.codehaus.mojo</groupId>
|
71 | 71 | <artifactId>build-helper-maven-plugin</artifactId>
|
72 |
| - <version>3.3.0</version> |
| 72 | + <version>3.4.0</version> |
73 | 73 | <executions>
|
74 | 74 | <execution>
|
75 | 75 | <id>add-test-source</id>
|
|
87 | 87 | </plugin>
|
88 | 88 | <plugin>
|
89 | 89 | <artifactId>maven-surefire-plugin</artifactId>
|
90 |
| - <version>3.0.0-M5</version> |
| 90 | + <version>3.2.1</version> |
91 | 91 | <configuration>
|
92 | 92 | <includes>
|
93 | 93 | <!-- execute files ending in `Demo` as tests -->
|
|
99 | 99 | </plugin>
|
100 | 100 | <plugin>
|
101 | 101 | <artifactId>maven-jar-plugin</artifactId>
|
102 |
| - <version>3.2.2</version> |
| 102 | + <version>3.3.0</version> |
103 | 103 | <configuration>
|
104 | 104 | <archive>
|
105 | 105 | <manifest>
|
|
111 | 111 | </plugin>
|
112 | 112 | <plugin>
|
113 | 113 | <artifactId>maven-javadoc-plugin</artifactId>
|
114 |
| - <version>3.3.2</version> |
| 114 | + <version>3.6.0</version> |
115 | 115 | <configuration>
|
116 | 116 | <sourcepath>src/main/java</sourcepath>
|
117 | 117 | <subpackages>dev.nipafx.demo.java18.javadoc</subpackages>
|
|
132 | 132 | </plugin>
|
133 | 133 | <plugin>
|
134 | 134 | <artifactId>maven-dependency-plugin</artifactId>
|
135 |
| - <version>3.3.0</version> |
| 135 | + <version>3.6.1</version> |
136 | 136 | <executions>
|
137 | 137 | <execution>
|
138 | 138 | <id>copy-installed</id>
|
|
0 commit comments