Skip to content

Commit b9facd7

Browse files
committed
Update JDK and other dependencies to recent versions
1 parent 5a767e1 commit b9facd7

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

pom.xml

+11-11
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<!-- 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>
1616
</properties>
1717

1818
<dependencyManagement>
1919
<dependencies>
2020
<dependency>
2121
<groupId>org.junit</groupId>
2222
<artifactId>junit-bom</artifactId>
23-
<version>5.8.2</version>
23+
<version>5.10.0</version>
2424
<type>pom</type>
2525
<scope>import</scope>
2626
</dependency>
@@ -31,12 +31,12 @@
3131
<dependency>
3232
<groupId>org.openjfx</groupId>
3333
<artifactId>javafx-base</artifactId>
34-
<version>18</version>
34+
<version>21.0.1</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>org.openjfx</groupId>
3838
<artifactId>javafx-controls</artifactId>
39-
<version>18</version>
39+
<version>21.0.1</version>
4040
</dependency>
4141

4242
<dependency>
@@ -53,7 +53,7 @@
5353
<plugins>
5454
<plugin>
5555
<artifactId>maven-compiler-plugin</artifactId>
56-
<version>3.10.1</version>
56+
<version>3.11.0</version>
5757
<configuration>
5858
<!-- needed for preview language features (like pattern switches were in Java 18) -->
5959
<enablePreview>true</enablePreview>
@@ -69,7 +69,7 @@
6969
<!-- add the demo folder to the sources, so it gets compiled and tested -->
7070
<groupId>org.codehaus.mojo</groupId>
7171
<artifactId>build-helper-maven-plugin</artifactId>
72-
<version>3.3.0</version>
72+
<version>3.4.0</version>
7373
<executions>
7474
<execution>
7575
<id>add-test-source</id>
@@ -87,7 +87,7 @@
8787
</plugin>
8888
<plugin>
8989
<artifactId>maven-surefire-plugin</artifactId>
90-
<version>3.0.0-M5</version>
90+
<version>3.2.1</version>
9191
<configuration>
9292
<includes>
9393
<!-- execute files ending in `Demo` as tests -->
@@ -99,7 +99,7 @@
9999
</plugin>
100100
<plugin>
101101
<artifactId>maven-jar-plugin</artifactId>
102-
<version>3.2.2</version>
102+
<version>3.3.0</version>
103103
<configuration>
104104
<archive>
105105
<manifest>
@@ -111,7 +111,7 @@
111111
</plugin>
112112
<plugin>
113113
<artifactId>maven-javadoc-plugin</artifactId>
114-
<version>3.3.2</version>
114+
<version>3.6.0</version>
115115
<configuration>
116116
<sourcepath>src/main/java</sourcepath>
117117
<subpackages>dev.nipafx.demo.java18.javadoc</subpackages>
@@ -132,7 +132,7 @@
132132
</plugin>
133133
<plugin>
134134
<artifactId>maven-dependency-plugin</artifactId>
135-
<version>3.3.0</version>
135+
<version>3.6.1</version>
136136
<executions>
137137
<execution>
138138
<id>copy-installed</id>

0 commit comments

Comments
 (0)