Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View justinmonsees's full-sized avatar

justinmonsees

View GitHub Profile
@justinmonsees
justinmonsees / Installation Bundle POM
Created March 16, 2019 13:45
POM Installation Bundle Configuration
<configuration>
<mainClass>com.monsees.helloworldmaven.MainApp</mainClass>
<bundler>${installer.bundler}</bundler>
<bundleArguments>
<runtime /> <!-- dont include JRE, use installed one -->
<systemWide>true</systemWide>
<installdirChooser>true</installdirChooser>
</bundleArguments>
</configuration>
@justinmonsees
justinmonsees / Profiles POM
Created March 16, 2019 13:37
Illustrates the use of the profiles section in the POM for Maven
<profiles>
<profile>
<id>osx-x64</id>
<activation>
<os>
<family>mac</family>
<name>Mac OS X</name>
<arch>x86_64</arch>
</os>
@justinmonsees
justinmonsees / pom.xml
Created November 29, 2018 16:09
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>