Skip to content

Commit

Permalink
Update to Java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
perdian committed Nov 18, 2023
1 parent 28f7d3c commit 836f660
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.0
jobs:
build:
docker:
- image: maven:3-openjdk-18
- image: maven:3-eclipse-temurin-21
steps:
- checkout
- restore_cache:
Expand All @@ -16,4 +16,4 @@ jobs:
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }}
key: v1-dependencies-{{ checksum "pom.xml" }}
9 changes: 6 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
<commons-lang3.version>3.12.0</commons-lang3.version>
<commons-text.version>1.9</commons-text.version>
<fontawesomefx.version>4.7.0-9.1.2</fontawesomefx.version>
<java.version>18</java.version>
<javafx.version>18</javafx.version>
<java.version>21</java.version>
<javafx.version>21.0.1</javafx.version>
<junit-jupiter.version>5.8.2</junit-jupiter.version>
<log4j.version>2.17.2</log4j.version>
<jaudiotagger.version>2.2.5</jaudiotagger.version>
Expand Down Expand Up @@ -172,7 +172,7 @@
<plugin>
<groupId>de.perdian.maven.plugins</groupId>
<artifactId>macosappbundler-maven-plugin</artifactId>
<version>1.17.0</version>
<version>1.20.0</version>
<configuration>
<plist>
<CFBundleIconFile>src/bundle/macos/resources/tagtiger.icns</CFBundleIconFile>
Expand All @@ -183,6 +183,9 @@
<string>-Xdock:name=${project.name}</string>
</JVMOptions>
</plist>
<codesign>
<identity>-</identity>
</codesign>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 836f660

Please sign in to comment.