Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions CommandLine/Modular/Gradle/hellofx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
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 {
mavenCentral()
}

javafx {
version = "12"
modules = [ 'javafx.controls' ]
}

Expand Down
2 changes: 1 addition & 1 deletion CommandLine/Modular/Maven/hellofx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<configuration>
<release>12</release>
<jlinkImageName>hellofx</jlinkImageName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
3 changes: 1 addition & 2 deletions CommandLine/Non-modular/Gradle/hellofx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.7'
id 'org.openjfx.javafxplugin' version '0.0.8'
}

repositories {
Expand All @@ -15,7 +15,6 @@ dependencies {
}

javafx {
version = "12"
modules = [ 'javafx.controls' ]
}

Expand Down
2 changes: 1 addition & 1 deletion CommandLine/Non-modular/Maven/hellofx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<configuration>
<mainClass>hellofx.HelloFX</mainClass>
</configuration>
Expand Down
3 changes: 1 addition & 2 deletions HelloFX/Gradle/hellofx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.7'
id 'org.openjfx.javafxplugin' version '0.0.8'
}

repositories {
mavenCentral()
}

javafx {
version = "12"
modules = [ 'javafx.controls' ]
}

Expand Down
2 changes: 1 addition & 1 deletion HelloFX/Maven/hellofx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<configuration>
<mainClass>HelloFX</mainClass>
</configuration>
Expand Down
5 changes: 2 additions & 3 deletions IDE/Eclipse/Modular/Gradle/hellofx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
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 {
mavenCentral()
}

javafx {
version = "12"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}

Expand Down
2 changes: 1 addition & 1 deletion IDE/Eclipse/Modular/Maven/hellofx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<configuration>
<release>12</release>
<jlinkImageName>hellofx</jlinkImageName>
Expand Down
3 changes: 1 addition & 2 deletions IDE/Eclipse/Non-Modular/Gradle/hellofx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.7'
id 'org.openjfx.javafxplugin' version '0.0.8'
}

repositories {
Expand All @@ -11,7 +11,6 @@ dependencies {
}

javafx {
version = "12"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}

Expand Down
2 changes: 1 addition & 1 deletion IDE/Eclipse/Non-Modular/Maven/hellofx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<configuration>
<mainClass>org.openjfx.hellofx.App</mainClass>
</configuration>
Expand Down
5 changes: 2 additions & 3 deletions IDE/IntelliJ/Modular/Gradle/hellofx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
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 {
mavenCentral()
}

javafx {
version = "12"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}

Expand Down
6 changes: 3 additions & 3 deletions IDE/IntelliJ/Modular/Maven/hellofx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>12</version>
<version>12.0.1</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>12</version>
<version>12.0.1</version>
</dependency>
</dependencies>
<build>
Expand All @@ -34,7 +34,7 @@
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<configuration>
<release>12</release>
<jlinkImageName>hellofx</jlinkImageName>
Expand Down
3 changes: 1 addition & 2 deletions IDE/IntelliJ/Non-Modular/Gradle/hellofx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.7'
id 'org.openjfx.javafxplugin' version '0.0.8'
}

repositories {
Expand All @@ -11,7 +11,6 @@ dependencies {
}

javafx {
version = "12"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.button {
.label {
-fx-font-weight: bold;
}
2 changes: 1 addition & 1 deletion IDE/IntelliJ/Non-Modular/Maven/hellofx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<configuration>
<mainClass>org.openjfx.App</mainClass>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion IDE/NetBeans/Modular/Gradle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
5 changes: 2 additions & 3 deletions IDE/NetBeans/Modular/Gradle/hellofx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
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 {
mavenCentral()
}

javafx {
version = "12"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}

Expand Down
2 changes: 1 addition & 1 deletion IDE/NetBeans/Modular/Java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion IDE/NetBeans/Modular/Maven/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion IDE/NetBeans/Modular/Maven/hellofx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<configuration>
<release>12</release>
<jlinkImageName>hellofx</jlinkImageName>
Expand Down
2 changes: 1 addition & 1 deletion IDE/NetBeans/Non-Modular/Gradle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 1 addition & 2 deletions IDE/NetBeans/Non-Modular/Gradle/hellofx/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.7'
id 'org.openjfx.javafxplugin' version '0.0.8'
}

repositories {
Expand All @@ -11,7 +11,6 @@ dependencies {
}

javafx {
version = "12"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.button {
.label {
-fx-text-fill: blue;
}
2 changes: 1 addition & 1 deletion IDE/NetBeans/Non-Modular/Java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion IDE/NetBeans/Non-Modular/Maven/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion IDE/NetBeans/Non-Modular/Maven/hellofx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<configuration>
<mainClass>org.openjfx.hellofx.App</mainClass>
</configuration>
Expand Down