aboutsummaryrefslogtreecommitdiff
path: root/id/server/distribution/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/distribution/pom.xml')
-rw-r--r--id/server/distribution/pom.xml115
1 files changed, 115 insertions, 0 deletions
diff --git a/id/server/distribution/pom.xml b/id/server/distribution/pom.xml
new file mode 100644
index 000000000..2bbb3923d
--- /dev/null
+++ b/id/server/distribution/pom.xml
@@ -0,0 +1,115 @@
+<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/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>MOA.id</groupId>
+ <artifactId>server</artifactId>
+ <version>1.4.0</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>MOA</groupId>
+ <artifactId>id.server.distribution</artifactId>
+ <packaging>pom</packaging>
+ <version>1.4.0</version>
+ <name>ID-Server-Distribution</name>
+
+ <properties>
+ <thirdPartyLib>${basedir}/../../buildhelper</thirdPartyLib>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>./assembly-auth.xml</descriptor>
+ <descriptor>./assembly-proxy.xml</descriptor>
+<!--
+ <descriptor>./assembly-src.xml</descriptor>
+-->
+ </descriptors>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-dist-standalone</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attached</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>xalan</groupId>
+ <artifactId>xalan</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xmlParserAPIs</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_ecc</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_jce_full</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_Pkcs11Provider</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_ecc</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_jce_full</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.prod</groupId>
+ <artifactId>iaik_Pkcs11Provider</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>iaik.win32</groupId>
+ <artifactId>Pkcs11Wrapper</artifactId>
+ <type>dll</type>
+ <version>1.0</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>jsse</groupId>
+ <artifactId>jcert</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>jsse</groupId>
+ <artifactId>jnet</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>jsse</groupId>
+ <artifactId>jsse</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+
+ </dependencies>
+</project> \ No newline at end of file