Skip to content

Commit c02e967

Browse files
Use latest JavaFX and Gradle plugin
1 parent 89f7c9c commit c02e967

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

CommandLine/Modular/Gradle/hellofx/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.8'
3+
id 'org.openjfx.javafxplugin' version '0.0.9'
44
id 'org.beryx.jlink' version '2.12.0'
55
}
66

@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
javafx {
12-
version = "13"
12+
version = "16"
1313
modules = [ 'javafx.controls' ]
1414
}
1515

CommandLine/Non-modular/Gradle/hellofx/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.8'
3+
id 'org.openjfx.javafxplugin' version '0.0.9'
44
}
55

66
repositories {
@@ -15,7 +15,7 @@ dependencies {
1515
}
1616

1717
javafx {
18-
version = "13"
18+
version = "16"
1919
modules = [ 'javafx.controls' ]
2020
}
2121

HelloFX/Gradle/hellofx/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.8'
3+
id 'org.openjfx.javafxplugin' version '0.0.9'
44
}
55

66
repositories {
77
mavenCentral()
88
}
99

1010
javafx {
11-
version = "13"
11+
version = "16"
1212
modules = [ 'javafx.controls' ]
1313
}
1414

IDE/Eclipse/Modular/Gradle/hellofx/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'application'
33
id 'eclipse'
4-
id 'org.openjfx.javafxplugin' version '0.0.8'
4+
id 'org.openjfx.javafxplugin' version '0.0.9'
55
id 'org.beryx.jlink' version '2.12.0'
66
}
77

@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
javafx {
13-
version = "13"
13+
version = "16"
1414
modules = [ 'javafx.controls', 'javafx.fxml' ]
1515
}
1616

IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.8'
3+
id 'org.openjfx.javafxplugin' version '0.0.9'
44
}
55

66
repositories {
@@ -11,7 +11,7 @@ dependencies {
1111
}
1212

1313
javafx {
14-
version = "13"
14+
version = "16"
1515
modules = [ 'javafx.controls', 'javafx.fxml' ]
1616
}
1717

IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.8'
3+
id 'org.openjfx.javafxplugin' version '0.0.9'
44
id 'org.beryx.jlink' version '2.12.0'
55
}
66

@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
javafx {
12-
version = "13"
12+
version = "16"
1313
modules = [ 'javafx.controls', 'javafx.fxml' ]
1414
}
1515

IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.8'
3+
id 'org.openjfx.javafxplugin' version '0.0.9'
44
}
55

66
repositories {
@@ -11,7 +11,7 @@ dependencies {
1111
}
1212

1313
javafx {
14-
version = "13"
14+
version = "16"
1515
modules = [ 'javafx.controls', 'javafx.fxml' ]
1616
}
1717

IDE/NetBeans/Modular/Gradle/hellofx/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.8'
3+
id 'org.openjfx.javafxplugin' version '0.0.9'
44
id 'org.beryx.jlink' version '2.12.0'
55
}
66

@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
javafx {
12-
version = "13"
12+
version = "16"
1313
modules = [ 'javafx.controls', 'javafx.fxml' ]
1414
}
1515

IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.8'
3+
id 'org.openjfx.javafxplugin' version '0.0.9'
44
}
55

66
repositories {
@@ -11,7 +11,7 @@ dependencies {
1111
}
1212

1313
javafx {
14-
version = "13"
14+
version = "16"
1515
modules = [ 'javafx.controls', 'javafx.fxml' ]
1616
}
1717

0 commit comments

Comments
 (0)