Skip to content

Commit a13c38d

Browse files
committed
explicitly add javafx to dependency since jdk 11+ does not include it
1 parent 164a81b commit a13c38d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

gpclient/gpclient-javafx/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,26 @@
3636
<artifactId>gpclient-loc</artifactId>
3737
<version>${project.version}</version>
3838
</dependency>
39+
<!-- JavaFX, since JDK 11 a separate module -->
40+
<dependency>
41+
<groupId>org.openjfx</groupId>
42+
<artifactId>javafx-controls</artifactId>
43+
<version>11.0.2</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.openjfx</groupId>
47+
<artifactId>javafx-web</artifactId>
48+
<version>11.0.2</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>org.openjfx</groupId>
52+
<artifactId>javafx-swing</artifactId>
53+
<version>11.0.2</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>org.openjfx</groupId>
57+
<artifactId>javafx-fxml</artifactId>
58+
<version>11.0.2</version>
59+
</dependency>
3960
</dependencies>
4061
</project>

0 commit comments

Comments
 (0)