Skip to content

Instantly share code, notes, and snippets.

@justinmonsees
Created November 29, 2018 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinmonsees/d4dd52bf4734683b55fb34b4be755405 to your computer and use it in GitHub Desktop.
Save justinmonsees/d4dd52bf4734683b55fb34b4be755405 to your computer and use it in GitHub Desktop.
javafx-maven-plugin code
<plugin>
<groupId>com.zenjava</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>8.8.3</version>
<executions>
<execution>
<id>create-fx-jar</id>
<phase>package</phase>
<goals>
<goal>native</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.monsees.helloworldmaven.MainApp</mainClass>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment