Skip to content

Commit 96e6f16

Browse files
committed
Updated to work with maven javafx plugin 1.5
1 parent e6a9b2d commit 96e6f16

File tree

1 file changed

+13
-13
lines changed
  • src/main/resources/archetype-resources/__rootArtifactId__-client

1 file changed

+13
-13
lines changed

src/main/resources/archetype-resources/__rootArtifactId__-client/pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<!--
4-
The Maven module definition for the client application. This tells Maven which dependencies we want to use and
5-
how to build our application. Most of the work is taken care of for us by the javafx-maven-plugin. For more
6-
information on this see: https://github.com/zonski/javafx-maven-plugin
3+
<!--
4+
The Maven module definition for the client application. This tells Maven which dependencies we want to use and
5+
how to build our application. Most of the work is taken care of for us by the javafx-maven-plugin. For more
6+
information on this see: https://github.com/zonski/javafx-maven-plugin
77
-->
88

99
<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/xsd/maven-4.0.0.xsd">
@@ -25,24 +25,24 @@
2525
<build>
2626
<plugins>
2727

28-
<!--
29-
This plugin provides functions for building a JavaFX distribution bundle. There are several options,
30-
including building a native installer and building a webstart bundle. See the plugin's site for more
31-
information on how to use these.
28+
<!--
29+
This plugin provides functions for building a JavaFX distribution bundle. There are several options,
30+
including building a native installer and building a webstart bundle. See the plugin's site for more
31+
information on how to use these.
3232
-->
3333
<plugin>
3434
<groupId>com.zenjava</groupId>
3535
<artifactId>javafx-maven-plugin</artifactId>
36-
<version>1.4</version>
36+
<version>1.5</version>
3737
<configuration>
3838

3939
<!-- we need to tell the plugin which class to launch but it figures out most of the rest -->
4040
<mainClass>${package}.client.SimpleRestApp</mainClass>
4141

42-
<!--
43-
only required if signing the jar file for webstart deployment - if you don't want to deploy
44-
to webstart you can delete this. Note that if you use FXML and want to use webstart then you
45-
must sign the JAR. FXML cannot run in a regular sandboxed browser and needs extra permissions.
42+
<!--
43+
only required if signing the jar file for webstart deployment - if you don't want to deploy
44+
to webstart you can delete this. Note that if you use FXML and want to use webstart then you
45+
must sign the JAR. FXML cannot run in a regular sandboxed browser and needs extra permissions.
4646
-->
4747
<keyStoreAlias>example-user</keyStoreAlias>
4848
<keyStorePassword>example-password</keyStorePassword>

0 commit comments

Comments
 (0)