diff options
Diffstat (limited to 'BKUOnline/pom.xml')
-rw-r--r-- | BKUOnline/pom.xml | 48 |
1 files changed, 45 insertions, 3 deletions
diff --git a/BKUOnline/pom.xml b/BKUOnline/pom.xml index 9ac1dac7..bd46041f 100644 --- a/BKUOnline/pom.xml +++ b/BKUOnline/pom.xml @@ -56,7 +56,7 @@ <version>1.1.2-SNAPSHOT</version> <scope>compile</scope> </dependency> - <dependency> + <dependency> <groupId>at.gv.egiz</groupId> <artifactId>STALService</artifactId> <version>1.1.2-SNAPSHOT</version> @@ -146,7 +146,7 @@ </execution> </executions> </plugin> - + <plugin> <artifactId>maven-war-plugin</artifactId> <version>2.0.2</version> @@ -164,7 +164,6 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>maven-buildnumber-plugin</artifactId> - <version>0.9.6</version> <executions> <execution> <phase>validate</phase> @@ -215,6 +214,49 @@ </plugins> </build> </profile> + <profile> + <id>include-webstart</id> + <build> + <plugins> + <plugin> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <!-- + Copy the webstart bundle in as a resource + before packaging starts. + --> + <phase>process-resources</phase> + <goals> + <goal>unpack</goal> + </goals> + <configuration> + <artifactItems> + <artifactItem> + <groupId>at.gv.egiz</groupId> + <artifactId>BKUWebStart</artifactId> + <version>1.0.3-SNAPSHOT</version> + <type>zip</type> + </artifactItem> + </artifactItems> + <outputDirectory>${project.build.directory}/${project.build.finalName}/webstart</outputDirectory> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <dependencies> + <!-- not yet available in IBIBLIO, install locally --> + <dependency> + <groupId>com.sun.java.jnlp</groupId> + <artifactId>jnlp-servlet</artifactId> + <version>1.6.0.10</version> + </dependency> + </dependencies> + + </profile> </profiles> <properties> <netbeans.hint.deploy.server>Tomcat60</netbeans.hint.deploy.server> |