From c049d8dbfedd1e1aecd9ca645a80c0f79c8ebf8d Mon Sep 17 00:00:00 2001 From: Riegel <alexander.riegel@hft-stuttgart.de> Date: Wed, 11 Sep 2024 10:32:37 +0200 Subject: [PATCH] Update JavaFX plugin to fix build-failure of binaries --- CityDoctorParent/pom.xml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/CityDoctorParent/pom.xml b/CityDoctorParent/pom.xml index 30b4c21..10f93c0 100644 --- a/CityDoctorParent/pom.xml +++ b/CityDoctorParent/pom.xml @@ -16,6 +16,7 @@ <nonMavenLibsPath>${project.baseUri}../non-maven-libs</nonMavenLibsPath> <jre-version-short>17.0.10</jre-version-short> <jre-version>${jre-version-short}+13</jre-version> + <jfx-version>17.0.12</jfx-version> </properties> <repositories> <repository> @@ -79,17 +80,17 @@ <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> - <version>17.0.2</version> + <version>${jfx-version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> - <version>17.0.2</version> + <version>${jfx-version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-swing</artifactId> - <version>17.0.2</version> + <version>${jfx-version}</version> </dependency> <dependency> <groupId>de.hft.stuttgart</groupId> @@ -244,17 +245,17 @@ <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> - <version>17.0.2</version> + <version>${jfx-version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> - <version>17.0.2</version> + <version>${jfx-version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-swing</artifactId> - <version>17.0.2</version> + <version>${jfx-version}</version> </dependency> </dependencies> <modules> -- GitLab