Added a new Project
This commit is contained in:
parent
6b23a757b6
commit
b51bc8d120
9 changed files with 95 additions and 1 deletions
|
@ -10,7 +10,8 @@ import javafx.stage.Stage;
|
||||||
* JavaFX App
|
* JavaFX App
|
||||||
*/
|
*/
|
||||||
public class App extends Application {
|
public class App extends Application {
|
||||||
|
// Method start is already defined int the library Application so we have to
|
||||||
|
// Override it
|
||||||
@Override
|
@Override
|
||||||
|
|
||||||
public void start(Stage stage) {
|
public void start(Stage stage) {
|
||||||
|
|
Binary file not shown.
46
Code/ost/_01_hello_world/pom.xml
Normal file
46
Code/ost/_01_hello_world/pom.xml
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>com.example</groupId>
|
||||||
|
<artifactId>_01_hello_world</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<properties>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<maven.compiler.source>11</maven.compiler.source>
|
||||||
|
<maven.compiler.target>11</maven.compiler.target>
|
||||||
|
</properties>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.openjfx</groupId>
|
||||||
|
<artifactId>javafx-controls</artifactId>
|
||||||
|
<version>13</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.8.0</version>
|
||||||
|
<configuration>
|
||||||
|
<release>11</release>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.openjfx</groupId>
|
||||||
|
<artifactId>javafx-maven-plugin</artifactId>
|
||||||
|
<version>0.0.6</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<!-- Default configuration for running -->
|
||||||
|
<!-- Usage: mvn clean javafx:run -->
|
||||||
|
<id>default-cli</id>
|
||||||
|
<configuration>
|
||||||
|
<mainClass>com.example.App</mainClass>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</project>
|
30
Code/ost/_01_hello_world/src/main/java/com/example/App.java
Normal file
30
Code/ost/_01_hello_world/src/main/java/com/example/App.java
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
package com.example;
|
||||||
|
|
||||||
|
import javafx.application.Application;
|
||||||
|
import javafx.scene.Scene;
|
||||||
|
import javafx.scene.control.Label;
|
||||||
|
import javafx.scene.layout.StackPane;
|
||||||
|
import javafx.stage.Stage;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* JavaFX App
|
||||||
|
*/
|
||||||
|
public class App extends Application {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void start(Stage stage) {
|
||||||
|
var javaVersion = SystemInfo.javaVersion();
|
||||||
|
var javafxVersion = SystemInfo.javafxVersion();
|
||||||
|
|
||||||
|
var label = new Label("Hello, JavaFX " + javafxVersion + ", running on Java " + javaVersion + ".");
|
||||||
|
var scene = new Scene(new StackPane(label), 640, 480);
|
||||||
|
stage.setScene(scene);
|
||||||
|
stage.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
launch();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
package com.example;
|
||||||
|
|
||||||
|
public class SystemInfo {
|
||||||
|
|
||||||
|
public static String javaVersion() {
|
||||||
|
return System.getProperty("java.version");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String javafxVersion() {
|
||||||
|
return System.getProperty("javafx.version");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
4
Code/ost/_01_hello_world/src/main/java/module-info.java
Normal file
4
Code/ost/_01_hello_world/src/main/java/module-info.java
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
module com.example {
|
||||||
|
requires javafx.controls;
|
||||||
|
exports com.example;
|
||||||
|
}
|
BIN
Code/ost/_01_hello_world/target/classes/com/example/App.class
Normal file
BIN
Code/ost/_01_hello_world/target/classes/com/example/App.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
Code/ost/_01_hello_world/target/classes/module-info.class
Normal file
BIN
Code/ost/_01_hello_world/target/classes/module-info.class
Normal file
Binary file not shown.
Loading…
Reference in a new issue