diff --git a/CommandLine/Modular/Gradle/hellofx/build.gradle b/CommandLine/Modular/Gradle/hellofx/build.gradle index ccf62fc..28621c7 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,7 @@ repositories { } javafx { - version = "12" + version = "12.0.2" modules = [ 'javafx.controls' ] } diff --git a/CommandLine/Modular/Maven/hellofx/pom.xml b/CommandLine/Modular/Maven/hellofx/pom.xml index a371555..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 @@ -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..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; @@ -22,14 +21,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..d56a3c1 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,7 @@ dependencies { } javafx { - version = "12" + 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 762eadb..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 @@ -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..be214f8 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,7 @@ repositories { } javafx { - version = "12" + version = "12.0.2" modules = [ 'javafx.controls' ] } diff --git a/HelloFX/Maven/hellofx/pom.xml b/HelloFX/Maven/hellofx/pom.xml index ab04782..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 @@ -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..0e94003 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,7 @@ repositories { } javafx { - version = "12" + 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 a8158df..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 @@ -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..1b75312 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,7 @@ dependencies { } javafx { - version = "12" + 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 c4ec732..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 @@ -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..33ddda6 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,7 @@ repositories { } javafx { - version = "12" + 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 8ab207a..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 + 12.0.2 org.openjfx javafx-fxml - 12 + 12.0.2 @@ -26,7 +26,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 12 @@ -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..7fff865 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,7 @@ dependencies { } javafx { - version = "12" + 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 3ab643a..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 @@ -.button { - -fx-font-weight: bold; +.label { + -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 0e77529..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 @@ -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..33ddda6 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,7 @@ repositories { } javafx { - version = "12" + 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/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..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 @@ -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..7fff865 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,7 @@ dependencies { } javafx { - version = "12" + 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/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..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 @@ -34,7 +34,7 @@ org.openjfx javafx-maven-plugin - 0.0.2 + 0.0.3 org.openjfx.hellofx.App