From b2de58c1360c61a80472256d5ab7113995e3ef0e Mon Sep 17 00:00:00 2001 From: "jose.pereda" Date: Fri, 26 Jul 2019 20:59:01 +0200 Subject: [PATCH 1/2] #107 Update samples with latest versions --- CommandLine/Modular/Gradle/hellofx/build.gradle | 5 ++--- CommandLine/Modular/Maven/hellofx/pom.xml | 2 +- .../Maven/hellofx/src/main/java/org/openjfx/MainApp.java | 8 -------- CommandLine/Non-modular/Gradle/hellofx/build.gradle | 3 +-- CommandLine/Non-modular/Maven/hellofx/pom.xml | 2 +- HelloFX/Gradle/hellofx/build.gradle | 3 +-- HelloFX/Maven/hellofx/pom.xml | 2 +- IDE/Eclipse/Modular/Gradle/hellofx/build.gradle | 5 ++--- IDE/Eclipse/Modular/Maven/hellofx/pom.xml | 2 +- IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle | 3 +-- IDE/Eclipse/Non-Modular/Maven/hellofx/pom.xml | 2 +- IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle | 5 ++--- IDE/IntelliJ/Modular/Maven/hellofx/pom.xml | 6 +++--- IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle | 3 +-- .../hellofx/src/main/resources/org/openjfx/styles.css | 2 +- IDE/IntelliJ/Non-Modular/Maven/hellofx/pom.xml | 2 +- IDE/NetBeans/Modular/Gradle/README.md | 2 +- IDE/NetBeans/Modular/Gradle/hellofx/build.gradle | 5 ++--- IDE/NetBeans/Modular/Java/README.md | 2 +- IDE/NetBeans/Modular/Maven/README.md | 2 +- IDE/NetBeans/Modular/Maven/hellofx/pom.xml | 2 +- IDE/NetBeans/Non-Modular/Gradle/README.md | 2 +- IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle | 3 +-- .../hellofx/src/main/resources/org/openjfx/styles.css | 2 +- IDE/NetBeans/Non-Modular/Java/README.md | 2 +- IDE/NetBeans/Non-Modular/Maven/README.md | 2 +- IDE/NetBeans/Non-Modular/Maven/hellofx/pom.xml | 2 +- 27 files changed, 32 insertions(+), 49 deletions(-) diff --git a/CommandLine/Modular/Gradle/hellofx/build.gradle b/CommandLine/Modular/Gradle/hellofx/build.gradle index ccf62fc..831fe6d 100644 --- a/CommandLine/Modular/Gradle/hellofx/build.gradle +++ b/CommandLine/Modular/Gradle/hellofx/build.gradle @@ -1,7 +1,7 @@ plugins { id 'application' - id 'org.openjfx.javafxplugin' version '0.0.7' - id 'org.beryx.jlink' version '2.9.4' + id 'org.openjfx.javafxplugin' version '0.0.8' + id 'org.beryx.jlink' version '2.12.0' } repositories { @@ -9,7 +9,6 @@ repositories { } javafx { - version = "12" modules = [ 'javafx.controls' ] } diff --git a/CommandLine/Modular/Maven/hellofx/pom.xml b/CommandLine/Modular/Maven/hellofx/pom.xml index a371555..f5ab7e8 100644 --- a/CommandLine/Modular/Maven/hellofx/pom.xml +++ b/CommandLine/Modular/Maven/hellofx/pom.xml @@ -43,7 +43,7 @@ org.openjfx javafx-maven-plugin - 0.0.2 + 0.0.3 12 hellofx diff --git a/CommandLine/Modular/Maven/hellofx/src/main/java/org/openjfx/MainApp.java b/CommandLine/Modular/Maven/hellofx/src/main/java/org/openjfx/MainApp.java index c791834..5bf43d1 100644 --- a/CommandLine/Modular/Maven/hellofx/src/main/java/org/openjfx/MainApp.java +++ b/CommandLine/Modular/Maven/hellofx/src/main/java/org/openjfx/MainApp.java @@ -22,14 +22,6 @@ public void start(Stage stage) throws Exception { stage.show(); } - /** - * The main() method is ignored in correctly deployed JavaFX application. - * main() serves only as fallback in case the application can not be - * launched through deployment artifacts, e.g., in IDEs with limited FX - * support. NetBeans ignores main(). - * - * @param args the command line arguments - */ public static void main(String[] args) { launch(args); } diff --git a/CommandLine/Non-modular/Gradle/hellofx/build.gradle b/CommandLine/Non-modular/Gradle/hellofx/build.gradle index fffb69e..bddd2e7 100644 --- a/CommandLine/Non-modular/Gradle/hellofx/build.gradle +++ b/CommandLine/Non-modular/Gradle/hellofx/build.gradle @@ -1,6 +1,6 @@ plugins { id 'application' - id 'org.openjfx.javafxplugin' version '0.0.7' + id 'org.openjfx.javafxplugin' version '0.0.8' } repositories { @@ -15,7 +15,6 @@ dependencies { } javafx { - version = "12" modules = [ 'javafx.controls' ] } diff --git a/CommandLine/Non-modular/Maven/hellofx/pom.xml b/CommandLine/Non-modular/Maven/hellofx/pom.xml index 762eadb..52bca27 100644 --- a/CommandLine/Non-modular/Maven/hellofx/pom.xml +++ b/CommandLine/Non-modular/Maven/hellofx/pom.xml @@ -53,7 +53,7 @@ org.openjfx javafx-maven-plugin - 0.0.2 + 0.0.3 hellofx.HelloFX diff --git a/HelloFX/Gradle/hellofx/build.gradle b/HelloFX/Gradle/hellofx/build.gradle index cdac510..83a2a09 100644 --- a/HelloFX/Gradle/hellofx/build.gradle +++ b/HelloFX/Gradle/hellofx/build.gradle @@ -1,6 +1,6 @@ plugins { id 'application' - id 'org.openjfx.javafxplugin' version '0.0.7' + id 'org.openjfx.javafxplugin' version '0.0.8' } repositories { @@ -8,7 +8,6 @@ repositories { } javafx { - version = "12" modules = [ 'javafx.controls' ] } diff --git a/HelloFX/Maven/hellofx/pom.xml b/HelloFX/Maven/hellofx/pom.xml index ab04782..6f89b6e 100644 --- a/HelloFX/Maven/hellofx/pom.xml +++ b/HelloFX/Maven/hellofx/pom.xml @@ -24,7 +24,7 @@ org.openjfx javafx-maven-plugin - 0.0.2 + 0.0.3 HelloFX diff --git a/IDE/Eclipse/Modular/Gradle/hellofx/build.gradle b/IDE/Eclipse/Modular/Gradle/hellofx/build.gradle index 761056d..d0ebac2 100644 --- a/IDE/Eclipse/Modular/Gradle/hellofx/build.gradle +++ b/IDE/Eclipse/Modular/Gradle/hellofx/build.gradle @@ -1,8 +1,8 @@ plugins { id 'application' id 'eclipse' - id 'org.openjfx.javafxplugin' version '0.0.7' - id 'org.beryx.jlink' version '2.9.4' + id 'org.openjfx.javafxplugin' version '0.0.8' + id 'org.beryx.jlink' version '2.12.0' } repositories { @@ -10,7 +10,6 @@ repositories { } javafx { - version = "12" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/Eclipse/Modular/Maven/hellofx/pom.xml b/IDE/Eclipse/Modular/Maven/hellofx/pom.xml index a8158df..5247d48 100644 --- a/IDE/Eclipse/Modular/Maven/hellofx/pom.xml +++ b/IDE/Eclipse/Modular/Maven/hellofx/pom.xml @@ -34,7 +34,7 @@ org.openjfx javafx-maven-plugin - 0.0.2 + 0.0.3 12 hellofx diff --git a/IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle b/IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle index 705f035..9063ca6 100644 --- a/IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle +++ b/IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle @@ -1,6 +1,6 @@ plugins { id 'application' - id 'org.openjfx.javafxplugin' version '0.0.7' + id 'org.openjfx.javafxplugin' version '0.0.8' } repositories { @@ -11,7 +11,6 @@ dependencies { } javafx { - version = "12" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/Eclipse/Non-Modular/Maven/hellofx/pom.xml b/IDE/Eclipse/Non-Modular/Maven/hellofx/pom.xml index c4ec732..d8c4b21 100644 --- a/IDE/Eclipse/Non-Modular/Maven/hellofx/pom.xml +++ b/IDE/Eclipse/Non-Modular/Maven/hellofx/pom.xml @@ -34,7 +34,7 @@ org.openjfx javafx-maven-plugin - 0.0.2 + 0.0.3 org.openjfx.hellofx.App diff --git a/IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle b/IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle index 2b8141c..bc57213 100644 --- a/IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle +++ b/IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle @@ -1,7 +1,7 @@ plugins { id 'application' - id 'org.openjfx.javafxplugin' version '0.0.7' - id 'org.beryx.jlink' version '2.9.4' + id 'org.openjfx.javafxplugin' version '0.0.8' + id 'org.beryx.jlink' version '2.12.0' } repositories { @@ -9,7 +9,6 @@ repositories { } javafx { - version = "12" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/IntelliJ/Modular/Maven/hellofx/pom.xml b/IDE/IntelliJ/Modular/Maven/hellofx/pom.xml index 8ab207a..756ab39 100644 --- a/IDE/IntelliJ/Modular/Maven/hellofx/pom.xml +++ b/IDE/IntelliJ/Modular/Maven/hellofx/pom.xml @@ -13,12 +13,12 @@ org.openjfx javafx-controls - 12 + 12.0.1 org.openjfx javafx-fxml - 12 + 12.0.1 @@ -34,7 +34,7 @@ org.openjfx javafx-maven-plugin - 0.0.2 + 0.0.3 12 hellofx diff --git a/IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle b/IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle index db004cd..0ae4a8b 100644 --- a/IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle +++ b/IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle @@ -1,6 +1,6 @@ plugins { id 'application' - id 'org.openjfx.javafxplugin' version '0.0.7' + id 'org.openjfx.javafxplugin' version '0.0.8' } repositories { @@ -11,7 +11,6 @@ dependencies { } javafx { - version = "12" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css b/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css index 3ab643a..756605a 100644 --- a/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css +++ b/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css @@ -1,3 +1,3 @@ -.button { +.label { -fx-font-weight: bold; } diff --git a/IDE/IntelliJ/Non-Modular/Maven/hellofx/pom.xml b/IDE/IntelliJ/Non-Modular/Maven/hellofx/pom.xml index 0e77529..ccf6b2d 100644 --- a/IDE/IntelliJ/Non-Modular/Maven/hellofx/pom.xml +++ b/IDE/IntelliJ/Non-Modular/Maven/hellofx/pom.xml @@ -34,7 +34,7 @@ org.openjfx javafx-maven-plugin - 0.0.2 + 0.0.3 org.openjfx.App diff --git a/IDE/NetBeans/Modular/Gradle/README.md b/IDE/NetBeans/Modular/Gradle/README.md index 09851a7..6322cc4 100644 --- a/IDE/NetBeans/Modular/Gradle/README.md +++ b/IDE/NetBeans/Modular/Gradle/README.md @@ -2,7 +2,7 @@ JavaFX 12 samples to run from NetBeans with different options and build tools -Version NetBeans [10.0](https://netbeans.apache.org/download/nb100/nb100.html) +Version NetBeans [11.1](https://netbeans.apache.org/download/nb111/nb111.html) Download an appropriate [JDK 12](https://jdk.java.net/12/) for your operating system. Make sure `JAVA_HOME` is properly set to the Java 12 installation directory. diff --git a/IDE/NetBeans/Modular/Gradle/hellofx/build.gradle b/IDE/NetBeans/Modular/Gradle/hellofx/build.gradle index 2b8141c..bc57213 100644 --- a/IDE/NetBeans/Modular/Gradle/hellofx/build.gradle +++ b/IDE/NetBeans/Modular/Gradle/hellofx/build.gradle @@ -1,7 +1,7 @@ plugins { id 'application' - id 'org.openjfx.javafxplugin' version '0.0.7' - id 'org.beryx.jlink' version '2.9.4' + id 'org.openjfx.javafxplugin' version '0.0.8' + id 'org.beryx.jlink' version '2.12.0' } repositories { @@ -9,7 +9,6 @@ repositories { } javafx { - version = "12" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/NetBeans/Modular/Java/README.md b/IDE/NetBeans/Modular/Java/README.md index 3fa20f4..37eac88 100644 --- a/IDE/NetBeans/Modular/Java/README.md +++ b/IDE/NetBeans/Modular/Java/README.md @@ -2,7 +2,7 @@ JavaFX 12 samples to run from NetBeans with different options and build tools -Version NetBeans [11.0](https://netbeans.apache.org/download/nb110/nb110.html) +Version NetBeans [11.1](https://netbeans.apache.org/download/nb111/nb111.html) Download an appropriate [JDK 12](https://jdk.java.net/12/) for your operating system. Make sure `JAVA_HOME` is properly set to the Java 12 installation directory. diff --git a/IDE/NetBeans/Modular/Maven/README.md b/IDE/NetBeans/Modular/Maven/README.md index b18b763..8e869cb 100644 --- a/IDE/NetBeans/Modular/Maven/README.md +++ b/IDE/NetBeans/Modular/Maven/README.md @@ -2,7 +2,7 @@ JavaFX 12 samples to run from NetBeans with different options and build tools -Version NetBeans [11.0](https://netbeans.apache.org/download/nb110/nb110.html) +Version NetBeans [11.1](https://netbeans.apache.org/download/nb111/nb111.html) Download an appropriate [JDK 12](https://jdk.java.net/12/) for your operating system. Make sure `JAVA_HOME` is properly set to the Java 12 installation directory. diff --git a/IDE/NetBeans/Modular/Maven/hellofx/pom.xml b/IDE/NetBeans/Modular/Maven/hellofx/pom.xml index 3797abd..dfea967 100644 --- a/IDE/NetBeans/Modular/Maven/hellofx/pom.xml +++ b/IDE/NetBeans/Modular/Maven/hellofx/pom.xml @@ -34,7 +34,7 @@ org.openjfx javafx-maven-plugin - 0.0.2 + 0.0.3 12 hellofx diff --git a/IDE/NetBeans/Non-Modular/Gradle/README.md b/IDE/NetBeans/Non-Modular/Gradle/README.md index 5f6f559..62ec410 100644 --- a/IDE/NetBeans/Non-Modular/Gradle/README.md +++ b/IDE/NetBeans/Non-Modular/Gradle/README.md @@ -2,7 +2,7 @@ JavaFX 12 samples to run from NetBeans with different options and build tools -Version NetBeans [11.0](https://netbeans.apache.org/download/nb110/nb110.html) +Version NetBeans [11.1](https://netbeans.apache.org/download/nb111/nb111.html) Download an appropriate [JDK 12](https://jdk.java.net/12/) for your operating system. Make sure `JAVA_HOME` is properly set to the Java 12 installation directory. diff --git a/IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle b/IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle index db004cd..0ae4a8b 100644 --- a/IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle +++ b/IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle @@ -1,6 +1,6 @@ plugins { id 'application' - id 'org.openjfx.javafxplugin' version '0.0.7' + id 'org.openjfx.javafxplugin' version '0.0.8' } repositories { @@ -11,7 +11,6 @@ dependencies { } javafx { - version = "12" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/NetBeans/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css b/IDE/NetBeans/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css index 65f6003..2e32f40 100644 --- a/IDE/NetBeans/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css +++ b/IDE/NetBeans/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css @@ -1,3 +1,3 @@ -.button { +.label { -fx-text-fill: blue; } diff --git a/IDE/NetBeans/Non-Modular/Java/README.md b/IDE/NetBeans/Non-Modular/Java/README.md index 0d019c8..0fd9c7e 100644 --- a/IDE/NetBeans/Non-Modular/Java/README.md +++ b/IDE/NetBeans/Non-Modular/Java/README.md @@ -2,7 +2,7 @@ JavaFX 12 samples to run from NetBeans with different options and build tools -Version NetBeans [11.0](https://netbeans.apache.org/download/nb110/nb110.html) +Version NetBeans [11.1](https://netbeans.apache.org/download/nb111/nb111.html) Download an appropriate [JDK 12](https://jdk.java.net/12/) for your operating system. Make sure `JAVA_HOME` is properly set to the Java 12 installation directory. diff --git a/IDE/NetBeans/Non-Modular/Maven/README.md b/IDE/NetBeans/Non-Modular/Maven/README.md index 7602ed6..e5249df 100644 --- a/IDE/NetBeans/Non-Modular/Maven/README.md +++ b/IDE/NetBeans/Non-Modular/Maven/README.md @@ -2,7 +2,7 @@ JavaFX 12 samples to run from NetBeans with different options and build tools -Version NetBeans [11.0](https://netbeans.apache.org/download/nb110/nb110.html) +Version NetBeans [11.1](https://netbeans.apache.org/download/nb111/nb111.html) Download an appropriate [JDK 12](https://jdk.java.net/12/) for your operating system. Make sure `JAVA_HOME` is properly set to the Java 12 installation directory. diff --git a/IDE/NetBeans/Non-Modular/Maven/hellofx/pom.xml b/IDE/NetBeans/Non-Modular/Maven/hellofx/pom.xml index 43fb565..411c2b7 100644 --- a/IDE/NetBeans/Non-Modular/Maven/hellofx/pom.xml +++ b/IDE/NetBeans/Non-Modular/Maven/hellofx/pom.xml @@ -34,7 +34,7 @@ org.openjfx javafx-maven-plugin - 0.0.2 + 0.0.3 org.openjfx.hellofx.App From faf9a64a06f65c5e232a97461ca9cba35a30307a Mon Sep 17 00:00:00 2001 From: "jose.pereda" Date: Sun, 28 Jul 2019 21:42:00 +0200 Subject: [PATCH 2/2] Update samples to latest JavaFX version --- CommandLine/Modular/Gradle/hellofx/build.gradle | 1 + CommandLine/Modular/Maven/hellofx/pom.xml | 6 +++--- .../hellofx/src/main/java/org/openjfx/MainApp.java | 1 - CommandLine/Non-modular/Gradle/hellofx/build.gradle | 1 + CommandLine/Non-modular/Maven/hellofx/pom.xml | 10 +++++----- HelloFX/Gradle/hellofx/build.gradle | 1 + HelloFX/Maven/hellofx/pom.xml | 2 +- IDE/Eclipse/Modular/Gradle/hellofx/build.gradle | 1 + .../hellofx/src/main/java/org/openjfx/MainApp.java | 1 - .../Modular/Java/HelloFX/src/org/openjfx/MainApp.java | 1 - IDE/Eclipse/Modular/Maven/hellofx/pom.xml | 6 +++--- IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle | 1 + .../hellofx/src/main/java/org/openjfx/MainApp.java | 1 - IDE/Eclipse/Non-Modular/Maven/hellofx/pom.xml | 6 +++--- IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle | 1 + .../hellofx/src/main/java/org/openjfx/MainApp.java | 1 - .../hellofx/src/main/resources/org/openjfx/styles.css | 4 ++-- .../Modular/Java/hellofx/src/org/openjfx/MainApp.java | 1 - IDE/IntelliJ/Modular/Maven/hellofx/pom.xml | 6 +++--- IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle | 1 + .../hellofx/src/main/java/org/openjfx/MainApp.java | 1 - .../hellofx/src/main/resources/org/openjfx/styles.css | 2 +- IDE/IntelliJ/Non-Modular/Maven/hellofx/pom.xml | 6 +++--- IDE/NetBeans/Modular/Gradle/hellofx/build.gradle | 1 + .../hellofx/src/main/java/org/openjfx/MainApp.java | 1 - .../src/hellofx/classes/org/openjfx/MainApp.java | 1 - IDE/NetBeans/Modular/Maven/hellofx/pom.xml | 6 +++--- IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle | 1 + .../hellofx/src/main/java/org/openjfx/MainApp.java | 1 - IDE/NetBeans/Non-Modular/Maven/hellofx/pom.xml | 6 +++--- 30 files changed, 39 insertions(+), 40 deletions(-) diff --git a/CommandLine/Modular/Gradle/hellofx/build.gradle b/CommandLine/Modular/Gradle/hellofx/build.gradle index 831fe6d..28621c7 100644 --- a/CommandLine/Modular/Gradle/hellofx/build.gradle +++ b/CommandLine/Modular/Gradle/hellofx/build.gradle @@ -9,6 +9,7 @@ repositories { } javafx { + version = "12.0.2" modules = [ 'javafx.controls' ] } diff --git a/CommandLine/Modular/Maven/hellofx/pom.xml b/CommandLine/Modular/Maven/hellofx/pom.xml index f5ab7e8..eb1fa1a 100644 --- a/CommandLine/Modular/Maven/hellofx/pom.xml +++ b/CommandLine/Modular/Maven/hellofx/pom.xml @@ -22,12 +22,12 @@ org.openjfx javafx-controls - 12.0.1 + 12.0.2 org.openjfx javafx-fxml - 12.0.1 + 12.0.2 @@ -35,7 +35,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 12 diff --git a/CommandLine/Modular/Maven/hellofx/src/main/java/org/openjfx/MainApp.java b/CommandLine/Modular/Maven/hellofx/src/main/java/org/openjfx/MainApp.java index 5bf43d1..2b61809 100644 --- a/CommandLine/Modular/Maven/hellofx/src/main/java/org/openjfx/MainApp.java +++ b/CommandLine/Modular/Maven/hellofx/src/main/java/org/openjfx/MainApp.java @@ -1,7 +1,6 @@ package org.openjfx; import javafx.application.Application; -import static javafx.application.Application.launch; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; diff --git a/CommandLine/Non-modular/Gradle/hellofx/build.gradle b/CommandLine/Non-modular/Gradle/hellofx/build.gradle index bddd2e7..d56a3c1 100644 --- a/CommandLine/Non-modular/Gradle/hellofx/build.gradle +++ b/CommandLine/Non-modular/Gradle/hellofx/build.gradle @@ -15,6 +15,7 @@ dependencies { } javafx { + version = "12.0.2" modules = [ 'javafx.controls' ] } diff --git a/CommandLine/Non-modular/Maven/hellofx/pom.xml b/CommandLine/Non-modular/Maven/hellofx/pom.xml index 52bca27..d60a53d 100644 --- a/CommandLine/Non-modular/Maven/hellofx/pom.xml +++ b/CommandLine/Non-modular/Maven/hellofx/pom.xml @@ -17,25 +17,25 @@ org.openjfx javafx-controls - 12.0.1 + 12.0.2 @@ -45,7 +45,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 12 diff --git a/HelloFX/Gradle/hellofx/build.gradle b/HelloFX/Gradle/hellofx/build.gradle index 83a2a09..be214f8 100644 --- a/HelloFX/Gradle/hellofx/build.gradle +++ b/HelloFX/Gradle/hellofx/build.gradle @@ -8,6 +8,7 @@ repositories { } javafx { + version = "12.0.2" modules = [ 'javafx.controls' ] } diff --git a/HelloFX/Maven/hellofx/pom.xml b/HelloFX/Maven/hellofx/pom.xml index 6f89b6e..34c949b 100644 --- a/HelloFX/Maven/hellofx/pom.xml +++ b/HelloFX/Maven/hellofx/pom.xml @@ -16,7 +16,7 @@ org.openjfx javafx-controls - 12.0.1 + 12.0.2 diff --git a/IDE/Eclipse/Modular/Gradle/hellofx/build.gradle b/IDE/Eclipse/Modular/Gradle/hellofx/build.gradle index d0ebac2..0e94003 100644 --- a/IDE/Eclipse/Modular/Gradle/hellofx/build.gradle +++ b/IDE/Eclipse/Modular/Gradle/hellofx/build.gradle @@ -10,6 +10,7 @@ repositories { } javafx { + version = "12.0.2" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/Eclipse/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java b/IDE/Eclipse/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java index 1de6ac6..85cb828 100644 --- a/IDE/Eclipse/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java +++ b/IDE/Eclipse/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java @@ -1,7 +1,6 @@ package org.openjfx; import javafx.application.Application; -import static javafx.application.Application.launch; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; diff --git a/IDE/Eclipse/Modular/Java/HelloFX/src/org/openjfx/MainApp.java b/IDE/Eclipse/Modular/Java/HelloFX/src/org/openjfx/MainApp.java index fc95d27..9c41b5b 100644 --- a/IDE/Eclipse/Modular/Java/HelloFX/src/org/openjfx/MainApp.java +++ b/IDE/Eclipse/Modular/Java/HelloFX/src/org/openjfx/MainApp.java @@ -1,7 +1,6 @@ package org.openjfx; import javafx.application.Application; -import static javafx.application.Application.launch; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; diff --git a/IDE/Eclipse/Modular/Maven/hellofx/pom.xml b/IDE/Eclipse/Modular/Maven/hellofx/pom.xml index 5247d48..e1d666f 100644 --- a/IDE/Eclipse/Modular/Maven/hellofx/pom.xml +++ b/IDE/Eclipse/Modular/Maven/hellofx/pom.xml @@ -13,12 +13,12 @@ org.openjfx javafx-controls - 12.0.1 + 12.0.2 org.openjfx javafx-fxml - 12.0.1 + 12.0.2 @@ -26,7 +26,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 12 diff --git a/IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle b/IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle index 9063ca6..1b75312 100644 --- a/IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle +++ b/IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle @@ -11,6 +11,7 @@ dependencies { } javafx { + version = "12.0.2" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/Eclipse/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java b/IDE/Eclipse/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java index 1de6ac6..85cb828 100644 --- a/IDE/Eclipse/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java +++ b/IDE/Eclipse/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java @@ -1,7 +1,6 @@ package org.openjfx; import javafx.application.Application; -import static javafx.application.Application.launch; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; diff --git a/IDE/Eclipse/Non-Modular/Maven/hellofx/pom.xml b/IDE/Eclipse/Non-Modular/Maven/hellofx/pom.xml index d8c4b21..d9be1ed 100644 --- a/IDE/Eclipse/Non-Modular/Maven/hellofx/pom.xml +++ b/IDE/Eclipse/Non-Modular/Maven/hellofx/pom.xml @@ -13,12 +13,12 @@ org.openjfx javafx-controls - 12.0.1 + 12.0.2 org.openjfx javafx-fxml - 12.0.1 + 12.0.2 @@ -26,7 +26,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 12 diff --git a/IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle b/IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle index bc57213..33ddda6 100644 --- a/IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle +++ b/IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle @@ -9,6 +9,7 @@ repositories { } javafx { + version = "12.0.2" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/IntelliJ/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java b/IDE/IntelliJ/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java index 1de6ac6..85cb828 100644 --- a/IDE/IntelliJ/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java +++ b/IDE/IntelliJ/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java @@ -1,7 +1,6 @@ package org.openjfx; import javafx.application.Application; -import static javafx.application.Application.launch; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; diff --git a/IDE/IntelliJ/Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css b/IDE/IntelliJ/Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css index 3ab643a..2e32f40 100644 --- a/IDE/IntelliJ/Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css +++ b/IDE/IntelliJ/Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css @@ -1,3 +1,3 @@ -.button { - -fx-font-weight: bold; +.label { + -fx-text-fill: blue; } diff --git a/IDE/IntelliJ/Modular/Java/hellofx/src/org/openjfx/MainApp.java b/IDE/IntelliJ/Modular/Java/hellofx/src/org/openjfx/MainApp.java index 4f3938b..e820f18 100644 --- a/IDE/IntelliJ/Modular/Java/hellofx/src/org/openjfx/MainApp.java +++ b/IDE/IntelliJ/Modular/Java/hellofx/src/org/openjfx/MainApp.java @@ -1,7 +1,6 @@ package org.openjfx; import javafx.application.Application; -import static javafx.application.Application.launch; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; diff --git a/IDE/IntelliJ/Modular/Maven/hellofx/pom.xml b/IDE/IntelliJ/Modular/Maven/hellofx/pom.xml index 756ab39..1569ae2 100644 --- a/IDE/IntelliJ/Modular/Maven/hellofx/pom.xml +++ b/IDE/IntelliJ/Modular/Maven/hellofx/pom.xml @@ -13,12 +13,12 @@ org.openjfx javafx-controls - 12.0.1 + 12.0.2 org.openjfx javafx-fxml - 12.0.1 + 12.0.2 @@ -26,7 +26,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 12 diff --git a/IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle b/IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle index 0ae4a8b..7fff865 100644 --- a/IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle +++ b/IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle @@ -11,6 +11,7 @@ dependencies { } javafx { + version = "12.0.2" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java b/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java index 1de6ac6..85cb828 100644 --- a/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java +++ b/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java @@ -1,7 +1,6 @@ package org.openjfx; import javafx.application.Application; -import static javafx.application.Application.launch; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; diff --git a/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css b/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css index 756605a..2e32f40 100644 --- a/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css +++ b/IDE/IntelliJ/Non-Modular/Gradle/hellofx/src/main/resources/org/openjfx/styles.css @@ -1,3 +1,3 @@ .label { - -fx-font-weight: bold; + -fx-text-fill: blue; } diff --git a/IDE/IntelliJ/Non-Modular/Maven/hellofx/pom.xml b/IDE/IntelliJ/Non-Modular/Maven/hellofx/pom.xml index ccf6b2d..fe4d3b2 100644 --- a/IDE/IntelliJ/Non-Modular/Maven/hellofx/pom.xml +++ b/IDE/IntelliJ/Non-Modular/Maven/hellofx/pom.xml @@ -13,12 +13,12 @@ org.openjfx javafx-controls - 12.0.1 + 12.0.2 org.openjfx javafx-fxml - 12.0.1 + 12.0.2 @@ -26,7 +26,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 12 diff --git a/IDE/NetBeans/Modular/Gradle/hellofx/build.gradle b/IDE/NetBeans/Modular/Gradle/hellofx/build.gradle index bc57213..33ddda6 100644 --- a/IDE/NetBeans/Modular/Gradle/hellofx/build.gradle +++ b/IDE/NetBeans/Modular/Gradle/hellofx/build.gradle @@ -9,6 +9,7 @@ repositories { } javafx { + version = "12.0.2" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/NetBeans/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java b/IDE/NetBeans/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java index 1de6ac6..85cb828 100644 --- a/IDE/NetBeans/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java +++ b/IDE/NetBeans/Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java @@ -1,7 +1,6 @@ package org.openjfx; import javafx.application.Application; -import static javafx.application.Application.launch; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; diff --git a/IDE/NetBeans/Modular/Java/HelloFX/src/hellofx/classes/org/openjfx/MainApp.java b/IDE/NetBeans/Modular/Java/HelloFX/src/hellofx/classes/org/openjfx/MainApp.java index 4f3938b..e820f18 100644 --- a/IDE/NetBeans/Modular/Java/HelloFX/src/hellofx/classes/org/openjfx/MainApp.java +++ b/IDE/NetBeans/Modular/Java/HelloFX/src/hellofx/classes/org/openjfx/MainApp.java @@ -1,7 +1,6 @@ package org.openjfx; import javafx.application.Application; -import static javafx.application.Application.launch; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; diff --git a/IDE/NetBeans/Modular/Maven/hellofx/pom.xml b/IDE/NetBeans/Modular/Maven/hellofx/pom.xml index dfea967..9872c75 100644 --- a/IDE/NetBeans/Modular/Maven/hellofx/pom.xml +++ b/IDE/NetBeans/Modular/Maven/hellofx/pom.xml @@ -13,12 +13,12 @@ org.openjfx javafx-controls - 12.0.1 + 12.0.2 org.openjfx javafx-fxml - 12.0.1 + 12.0.2 @@ -26,7 +26,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 12 diff --git a/IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle b/IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle index 0ae4a8b..7fff865 100644 --- a/IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle +++ b/IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle @@ -11,6 +11,7 @@ dependencies { } javafx { + version = "12.0.2" modules = [ 'javafx.controls', 'javafx.fxml' ] } diff --git a/IDE/NetBeans/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java b/IDE/NetBeans/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java index 1de6ac6..85cb828 100644 --- a/IDE/NetBeans/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java +++ b/IDE/NetBeans/Non-Modular/Gradle/hellofx/src/main/java/org/openjfx/MainApp.java @@ -1,7 +1,6 @@ package org.openjfx; import javafx.application.Application; -import static javafx.application.Application.launch; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; diff --git a/IDE/NetBeans/Non-Modular/Maven/hellofx/pom.xml b/IDE/NetBeans/Non-Modular/Maven/hellofx/pom.xml index 411c2b7..8c6cbdf 100644 --- a/IDE/NetBeans/Non-Modular/Maven/hellofx/pom.xml +++ b/IDE/NetBeans/Non-Modular/Maven/hellofx/pom.xml @@ -13,12 +13,12 @@ org.openjfx javafx-controls - 12.0.1 + 12.0.2 org.openjfx javafx-fxml - 12.0.1 + 12.0.2 @@ -26,7 +26,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 12