Fixed DB connection and java version issue
This commit is contained in:
9
pom.xml
9
pom.xml
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user