Skip to content
Snippets Groups Projects
Commit c59b0bda authored by jez04's avatar jez04
Browse files

feat: upgrade java version to 21

parent a8dfa998
Branches
No related merge requests found
...@@ -8,39 +8,40 @@ ...@@ -8,39 +8,40 @@
<packaging>jar</packaging> <packaging>jar</packaging>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>14</maven.compiler.source> <maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>14</maven.compiler.target> <maven.compiler.target>21</maven.compiler.target>
<JavaFX.version>22-ea+16</JavaFX.version>
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.openjfx</groupId> <groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId> <artifactId>javafx-controls</artifactId>
<version>14</version> <version>${JavaFX.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.openjfx</groupId> <groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId> <artifactId>javafx-fxml</artifactId>
<version>14</version> <version>${JavaFX.version}</version>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>5.5.2</version> <version>5.10.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine --> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine -->
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId> <artifactId>junit-jupiter-engine</artifactId>
<version>5.5.2</version> <version>5.10.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-params --> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-params -->
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId> <artifactId>junit-jupiter-params</artifactId>
<version>5.5.2</version> <version>5.10.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
...@@ -48,26 +49,26 @@ ...@@ -48,26 +49,26 @@
<dependency> <dependency>
<groupId>org.postgresql</groupId> <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId> <artifactId>postgresql</artifactId>
<version>42.2.18</version> <version>42.7.1</version>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc10 --> <!-- https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc10 -->
<dependency> <dependency>
<groupId>com.oracle.database.jdbc</groupId> <groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc10</artifactId> <artifactId>ojdbc10</artifactId>
<version>19.8.0.0</version> <version>19.21.0.0</version>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/org.apache.derby/derby --> <!-- https://mvnrepository.com/artifact/org.apache.derby/derby -->
<dependency> <dependency>
<groupId>org.apache.derby</groupId> <groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId> <artifactId>derby</artifactId>
<version>10.15.2.0</version> <version>10.17.1.0</version>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/org.apache.derby/derbyclient --> <!-- https://mvnrepository.com/artifact/org.apache.derby/derbyclient -->
<dependency> <dependency>
<groupId>org.apache.derby</groupId> <groupId>org.apache.derby</groupId>
<artifactId>derbyclient</artifactId> <artifactId>derbyclient</artifactId>
<version>10.15.2.0</version> <version>10.17.1.0</version>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/org.apache.derby/derbytools --> <!-- https://mvnrepository.com/artifact/org.apache.derby/derbytools -->
<dependency> <dependency>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment