Skip to content

Commit ac97f60

Browse files
committed
Java 19; Update dependencies
1 parent eb6c63f commit ac97f60

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up JDK
1616
uses: actions/setup-java@v2
1717
with:
18-
java-version: '18'
18+
java-version: '19'
1919
distribution: 'zulu'
2020
- name: Install Linux dependencies
2121
run: sudo apt-get install libplist-dev libimobiledevice-dev libirecovery-1.0-dev

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
2222
plugins {
2323
id 'java'
2424
id 'application'
25-
id 'com.github.ben-manes.versions' version '0.42.0'
25+
id 'com.github.ben-manes.versions' version '0.43.0'
2626
id 'org.beryx.jlink' version '2.25.0'
2727
id 'org.openjfx.javafxplugin' version '0.0.13'
2828

@@ -42,29 +42,29 @@ def os = DefaultNativePlatform.currentOperatingSystem
4242

4343
startScripts.enabled = distZip.enabled = distTar.enabled = false
4444

45-
java.toolchain.languageVersion = JavaLanguageVersion.of(18)
45+
java.toolchain.languageVersion = JavaLanguageVersion.of(19)
4646
tasks.withType(JavaCompile).configureEach {
47-
sourceCompatibility = 18
47+
sourceCompatibility = 19
4848
}
4949

5050
repositories {
5151
mavenCentral()
5252
}
5353

5454
dependencies {
55-
implementation 'com.google.code.gson:gson:2.9.0'
55+
implementation 'com.google.code.gson:gson:2.10'
5656
implementation ('de.jangassen:nsmenufx:3.1.0') {
57-
exclude group: 'net.java.dev.jna', module: 'jna' //separate jna version
57+
exclude group: 'net.java.dev.jna', module: 'jna' //different jna version
5858
}
59-
implementation 'net.java.dev.jna:jna-jpms:5.11.0'
60-
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.21'
59+
implementation 'net.java.dev.jna:jna-jpms:5.12.1'
60+
implementation 'org.apache.commons:commons-compress:1.22'
6161

62-
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
62+
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.1'
6363
testImplementation group: 'org.testfx', name: 'openjfx-monocle', version: 'jdk-12.0.1+2'
6464
}
6565

6666
javafx {
67-
version = '18'
67+
version = '19'
6868
modules = [ 'javafx.controls', 'javafx.fxml' ]
6969
}
7070

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-rc-1-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)