diff options
-rw-r--r-- | BKUWebStart/pom.xml | 26 | ||||
-rw-r--r-- | BKUWebStartPackage/pom.xml | 25 |
2 files changed, 26 insertions, 25 deletions
diff --git a/BKUWebStart/pom.xml b/BKUWebStart/pom.xml index 18652eec..ca19a0b3 100644 --- a/BKUWebStart/pom.xml +++ b/BKUWebStart/pom.xml @@ -122,6 +122,32 @@ </plugins> </build> </profile> + + <profile> + <id>non-webstart</id> + <build> + <plugins> + <plugin> + <artifactId>maven-jar-plugin</artifactId> + <groupId>org.apache.maven.plugins</groupId> + <configuration> + <archive> + <manifest> + <addClasspath>true</addClasspath> + <mainClass>at.gv.egiz.bku.webstart.Launcher</mainClass> + </manifest> + <manifestEntries> + <mode>development</mode> + <url>${pom.url}</url> + <SplashScreen-Image>at/gv/egiz/bku/webstart/splash.png</SplashScreen-Image> + </manifestEntries> + </archive> + </configuration> + </plugin> + </plugins> + </build> + <!-- TODO somehow provide javaws.jar on manifest class-path --> + </profile> </profiles> <dependencies> diff --git a/BKUWebStartPackage/pom.xml b/BKUWebStartPackage/pom.xml index 014c3337..63725fc3 100644 --- a/BKUWebStartPackage/pom.xml +++ b/BKUWebStartPackage/pom.xml @@ -155,30 +155,5 @@ </build> </profile> - <profile> - <id>non-webstart</id> - <build> - <plugins> - <plugin> - <artifactId>maven-jar-plugin</artifactId> - <groupId>org.apache.maven.plugins</groupId> - <configuration> - <archive> - <manifest> - <addClasspath>true</addClasspath> - <mainClass>at.gv.egiz.bku.webstart.Launcher</mainClass> - </manifest> - <manifestEntries> - <mode>development</mode> - <url>${pom.url}</url> - <SplashScreen-Image>at/gv/egiz/bku/webstart/splash.png</SplashScreen-Image> - </manifestEntries> - </archive> - </configuration> - </plugin> - </plugins> - </build> - <!-- TODO somehow provide javaws.jar on manifest class-path --> - </profile> </profiles> </project>
\ No newline at end of file |