Fixed DB connection and java version issue

This commit is contained in:
2026-02-10 16:35:49 -07:00
parent a2dd913abd
commit 12020a2feb
4 changed files with 32 additions and 18 deletions

View File

@@ -8,9 +8,9 @@
<artifactId>PetShopDesktop</artifactId>
<version>1.0-SNAPSHOT</version>
<name>PetShopDesktop</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javafx.version>25.0.2</javafx.version>
<junit.version>5.12.1</junit.version>
</properties>
@@ -18,12 +18,12 @@
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>21.0.6</version>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>21.0.6</version>
<version>${javafx.version}</version>
</dependency>
<dependency>
@@ -66,8 +66,7 @@
<!-- Default configuration for running with: mvn clean javafx:run -->
<id>default-cli</id>
<configuration>
<mainClass>org.example.petshopdesktop/org.example.petshopdesktop.PetShopApplication
</mainClass>
<mainClass>org.example.petshopdesktop/org.example.petshopdesktop.PetShopApplication</mainClass>
<launcher>app</launcher>
<jlinkZipName>app</jlinkZipName>
<jlinkImageName>app</jlinkImageName>