Creating a project
Typically speaking, it is much better if a build can be reproduced without requiring the use of a specific IDE or some other proprietary tool. Fortunately, NetBeans offers the ability to create a Maven-based JavaFX project. Click on File | New Project and select Maven, then JavaFX Application:

Next, perform the following steps:
- Click on
Next. - Enter
Project NameasProcessManager. - Enter
Group IDascom.steeplesoft. - Enter
Packageascom.steeplesoft.processmanager. - Select
Project Location. - Click on
Finish.
Consider the following screenshot as an example:

Once the new project has been created, we need to update the Maven pom to use Java 9:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>9</source>
<target...