|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 |
|
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 |
7 | 7 | --> |
8 | 8 |
|
9 | 9 | <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 | 25 | <build> |
26 | 26 | <plugins> |
27 | 27 |
|
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. |
32 | 32 | --> |
33 | 33 | <plugin> |
34 | 34 | <groupId>com.zenjava</groupId> |
35 | 35 | <artifactId>javafx-maven-plugin</artifactId> |
36 | | - <version>1.4</version> |
| 36 | + <version>1.5</version> |
37 | 37 | <configuration> |
38 | 38 |
|
39 | 39 | <!-- we need to tell the plugin which class to launch but it figures out most of the rest --> |
40 | 40 | <mainClass>${package}.client.SimpleRestApp</mainClass> |
41 | 41 |
|
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. |
46 | 46 | --> |
47 | 47 | <keyStoreAlias>example-user</keyStoreAlias> |
48 | 48 | <keyStorePassword>example-password</keyStorePassword> |
|
0 commit comments