aboutsummaryrefslogtreecommitdiff
path: root/DocumentService/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'DocumentService/pom.xml')
-rw-r--r--DocumentService/pom.xml147
1 files changed, 0 insertions, 147 deletions
diff --git a/DocumentService/pom.xml b/DocumentService/pom.xml
deleted file mode 100644
index 6baac7b46..000000000
--- a/DocumentService/pom.xml
+++ /dev/null
@@ -1,147 +0,0 @@
-<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>
- <groupId>eu.stork</groupId>
- <artifactId>DocumentService</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>DocumentService</name>
- <description>DTL webservice</description>
- <dependencies>
- <!-- log4j -->
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.17</version>
- <exclusions>
- <exclusion>
- <groupId>javax.jms</groupId>
- <artifactId>jms</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.sun.jdmk</groupId>
- <artifactId>jmxtools</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.sun.jmx</groupId>
- <artifactId>jmxri</artifactId>
- </exclusion>
- <exclusion>
- <artifactId>mail</artifactId>
- <groupId>javax.mail</groupId>
- </exclusion>
- </exclusions>
- </dependency>
-
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.1</version>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>5.1.27</version>
- </dependency>
- <dependency>
- <groupId>org.glassfish.jersey.core</groupId>
- <artifactId>jersey-common</artifactId>
- <version>2.0-m03</version>
- </dependency>
-
- <dependency>
- <groupId>org.apache.axis</groupId>
- <artifactId>axis</artifactId>
- <version>1.4</version>
- </dependency>
-<!-- <dependency> -->
-<!-- <groupId>com.sun.org.apache</groupId> -->
-<!-- <artifactId>jaxp-ri</artifactId> -->
-<!-- <version>1.4</version> -->
-<!-- </dependency> -->
- <dependency>
- <groupId>com.sun.xml.ws</groupId>
- <artifactId>jaxws-tools</artifactId>
- <version>2.2.8</version>
- </dependency>
- <dependency>
- <groupId>com.sun.xml.ws</groupId>
- <artifactId>jaxws-rt</artifactId>
- <version>2.2.8</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis</artifactId>
- <version>1.4.01</version>
-</dependency>
-<!-- <dependency> -->
-<!-- <groupId>org.opensaml</groupId> -->
-<!-- <artifactId>opensaml</artifactId> -->
-<!-- </dependency> -->
- <dependency>
- <groupId>javax.xml</groupId>
- <artifactId>jaxrpc-api</artifactId>
- <version>1.1</version>
- </dependency>
- <!-- Bouncy Castle -->
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk16</artifactId>
- <version>1.46</version>
- </dependency>
- <dependency>
- <groupId>com.sun.xml.security</groupId>
- <artifactId>xml-security-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>org.jvnet</groupId>
- <artifactId>mimepull</artifactId>
- <version>1.6</version>
-</dependency>
-<dependency>
- <groupId>eu.stork</groupId>
- <artifactId>SamlEngine</artifactId>
- <version>1.4.0</version>
- </dependency>
-
-<!-- <dependency> -->
-<!-- <groupId>MOA.id.server</groupId> -->
-<!-- <artifactId>moa-id-lib</artifactId> -->
-<!-- <version>2.1.0-RC1</version> -->
-<!-- <classifier>classes</classifier> -->
-<!-- </dependency> -->
- </dependencies>
- <build>
- <finalName>DocumentService</finalName>
- <sourceDirectory>src</sourceDirectory>
- <resources>
- <resource>
- <directory>src</directory>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.3</version>
- <configuration>
- <warSourceDirectory>WebContent</warSourceDirectory>
- <failOnMissingWebXml>false</failOnMissingWebXml>
- <attachClasses>true</attachClasses>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <packaging>war</packaging>
-</project> \ No newline at end of file