Skip to content

Commit

Permalink
Updatd to use version 1.2 of the JavaFX Maven plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
zonski committed Nov 18, 2012
1 parent fd5d4fa commit 7740ee7
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 10 deletions.
38 changes: 28 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<groupId>com.zenjava</groupId>
<artifactId>hello-javafx-maven-example</artifactId>
<name>JavaFX Example Maven Project</name>
<organization>
<name>Zen Java</name>
</organization>

<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
Expand All @@ -21,18 +24,33 @@
<plugin>
<groupId>com.zenjava</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
<version>1.2</version>
<configuration>

<!-- executable JAR file is built by default (not optional at this stage) -->
<mainClass>com.zenjava.examples.hellojfxmaven.HelloJavaFxAndMavenApp</mainClass>
<bundleType>ALL</bundleType>

<!-- optionally override settings (such as jar file name, html file, etc) -->
<jarFileName>my-example-app.jar</jarFileName>

<!-- optionally sign the jar file if security is needed -->
<!--
to create keystore use command line:
keytool -genkey -alias example-user -keystore keystore.jks
-->
<signJar>
<alias>example-user</alias>
<storePassword>example-password</storePassword>
</signJar>

<!-- optionally build webstart bundle -->
<webstart>
<requiresAllPermissions>true</requiresAllPermissions>
</webstart>

<!-- optionally build native installers -->
<nativeInstallers/>

</configuration>
</plugin>

Expand Down
Binary file added src/main/deploy/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/deploy/keystore.jks
Binary file not shown.
Binary file added src/main/deploy/splash.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7740ee7

Please sign in to comment.