diff options
Diffstat (limited to 'BKUWebStart/pom.xml')
-rw-r--r-- | BKUWebStart/pom.xml | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/BKUWebStart/pom.xml b/BKUWebStart/pom.xml index fb72f26f..09574814 100644 --- a/BKUWebStart/pom.xml +++ b/BKUWebStart/pom.xml @@ -11,9 +11,10 @@ <packaging>jar</packaging> <name>BKU Web Start</name> <!-- - | IMPORTANT: update jnlp/resources/version.xml if version changes + | IMPORTANT: update jnlp/resources/version.xml and + | include-webstart profile in BKUOnline if version changes |--> - <version>1.0.3-SNAPSHOT</version> + <version>1.0.4-SNAPSHOT</version> <url>http://mocca.egovlabs.gv.at/</url> <description>Bürgerkartenumgebung (MOCCA Web Start)</description> @@ -276,4 +277,31 @@ </profiles> --> + <profiles> + <profile> + <id>standalone (non-webstart)</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <archive> + <manifest> + <addClasspath>true</addClasspath> + <mainClass>at.gv.egiz.bku.webstart.BKULauncher</mainClass> + </manifest> + <manifestEntries> + <mode>development</mode> + <url>${pom.url}</url> + <SplashScreen-Image>splash_standalone.png</SplashScreen-Image> + </manifestEntries> + </archive> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project>
\ No newline at end of file |