summaryrefslogtreecommitdiff
path: root/BKUWebStartPackage/pom.xml
diff options
context:
space:
mode:
authormcentner <mcentner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2010-05-05 15:29:01 +0000
committermcentner <mcentner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2010-05-05 15:29:01 +0000
commitb1c8641a63a67e3c64d948f9e8dce5c01e11e2dd (patch)
tree0883f08a408f89f758e9a1be629232e3dd055c3a /BKUWebStartPackage/pom.xml
parent83a9b613836910f7edc370c2fe60fa2268dc4461 (diff)
downloadmocca-b1c8641a63a67e3c64d948f9e8dce5c01e11e2dd.tar.gz
mocca-b1c8641a63a67e3c64d948f9e8dce5c01e11e2dd.tar.bz2
mocca-b1c8641a63a67e3c64d948f9e8dce5c01e11e2dd.zip
Merged feature branch mocca-1.2.13-id@r724 back to trunk.
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@725 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUWebStartPackage/pom.xml')
-rw-r--r--BKUWebStartPackage/pom.xml160
1 files changed, 0 insertions, 160 deletions
diff --git a/BKUWebStartPackage/pom.xml b/BKUWebStartPackage/pom.xml
deleted file mode 100644
index 0b226785..00000000
--- a/BKUWebStartPackage/pom.xml
+++ /dev/null
@@ -1,160 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>bku</artifactId>
- <groupId>at.gv.egiz</groupId>
- <version>1.2.7-SNAPSHOT</version>
- </parent>
- <groupId>at.gv.egiz</groupId>
- <artifactId>BKUWebStartPackage</artifactId>
- <version>1.2.7-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>BKU Web Start Package</name>
- <description>Bürgerkartenumgebung</description>
- <url>http://mocca.egovlabs.gv.at/</url>
-
- <build>
- <plugins>
- <plugin>
- <artifactId>webstart-maven-plugin</artifactId>
- <groupId>org.codehaus.mojo.webstart</groupId>
- <executions>
- <execution>
- <phase>process-resources</phase>
- <goals>
- <goal>jnlp-single</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <outputDirectoryName>webstart</outputDirectoryName>
-
- <excludeTransitive>false</excludeTransitive>
-
- <jnlpFiles>
- <jnlpFile>
- <templateFilename>template.xml</templateFilename>
- <outputFilename>mocca.jnlp</outputFilename>
- <jarResources>
- <jarResource>
- <groupId>at.gv.egiz</groupId>
- <artifactId>BKUWebStart</artifactId>
- <version>${project.version}</version>
- <mainClass>at.gv.egiz.bku.webstart.Launcher</mainClass>
- </jarResource>
- </jarResources>
- </jnlpFile>
- </jnlpFiles>
-
- <sign>
- <alias>test-applet signer</alias>
- <keystore>${project.basedir}/src/main/jnlp/keystore.ks</keystore>
- <storepass>storepass</storepass>
- <keypass>keypass</keypass>
- <verify>true</verify>
- <keystoreConfig>
- <delete>false</delete>
- <gen>false</gen>
- </keystoreConfig>
- </sign>
-
- <unsign>true</unsign>
- <verifyjar>false</verifyjar>
-
- <pack200>false</pack200>
- <gzip>false</gzip>
- <outputJarVersions>false</outputJarVersions>
- <verbose>true</verbose>
-
- </configuration>
- </plugin>
-
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <descriptors>
- <descriptor>${basedir}/src/main/assemblies/zip-webstart.xml</descriptor>
- </descriptors>
- </configuration>
- </plugin>
-
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <artifactId>BKUWebStart</artifactId>
- <groupId>at.gv.egiz</groupId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
-
- <profiles>
- <profile>
- <id>pkcs11-sign</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>webstart-maven-plugin</artifactId>
- <groupId>org.codehaus.mojo.webstart</groupId>
- <!-- use pkcs11-patched webstart-maven-plugin-->
- <version>1.0-beta-1-mocca</version>
- <configuration>
- <sign>
- <keystore>NONE</keystore>
- <storetype>PKCS11</storetype>
- <providerClass>iaik.pkcs.pkcs11.provider.IAIKPkcs11</providerClass>
- <alias>a-sit</alias>
- <storepass>${pkcs11-pass}</storepass>
- <verify>true</verify>
- <keystoreConfig>
- <delete>false</delete>
- <gen>false</gen>
- </keystoreConfig>
- </sign>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <profile>
- <!-- development profile -->
- <id>local-webstart</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>webstart-maven-plugin</artifactId>
- <groupId>org.codehaus.mojo.webstart</groupId>
- <configuration>
- <jnlpFiles>
- <jnlpFile>
- <templateFilename>template-local.xml</templateFilename>
- <outputFilename>mocca-local.jnlp</outputFilename>
- <jarResources>
- <jarResource>
- <groupId>at.gv.egiz</groupId>
- <artifactId>BKUWebStart</artifactId>
- <version>${project.version}</version>
- <mainClass>at.gv.egiz.bku.webstart.Launcher</mainClass>
- </jarResource>
- </jarResources>
- </jnlpFile>
- </jnlpFiles>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- </profiles>
-</project> \ No newline at end of file