diff options
Diffstat (limited to 'repository')
-rw-r--r-- | repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT-classes.jar | bin | 0 -> 46413 bytes | |||
-rw-r--r-- | repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.jar | bin | 0 -> 46406 bytes | |||
-rw-r--r-- | repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.pom | 154 | ||||
-rw-r--r-- | repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.war | bin | 0 -> 46413 bytes | |||
-rw-r--r-- | repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/maven-metadata-local.xml | 35 | ||||
-rw-r--r-- | repository/eu/stork/DocumentService/maven-metadata-local.xml | 11 |
6 files changed, 200 insertions, 0 deletions
diff --git a/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT-classes.jar b/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT-classes.jar Binary files differnew file mode 100644 index 000000000..d338cb3d6 --- /dev/null +++ b/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT-classes.jar diff --git a/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.jar b/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.jar Binary files differnew file mode 100644 index 000000000..411ba64b7 --- /dev/null +++ b/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.jar diff --git a/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.pom b/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.pom new file mode 100644 index 000000000..519d70468 --- /dev/null +++ b/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.pom @@ -0,0 +1,154 @@ +<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>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.7</source> + <target>1.7</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> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <archive> + <addMavenDescriptor>true</addMavenDescriptor> + </archive> + </configuration> + <executions> + <execution> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + <packaging>jar</packaging> +</project> diff --git a/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.war b/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.war Binary files differnew file mode 100644 index 000000000..b6622a63c --- /dev/null +++ b/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/DocumentService-0.0.1-SNAPSHOT.war diff --git a/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/maven-metadata-local.xml b/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/maven-metadata-local.xml new file mode 100644 index 000000000..be8b41c9d --- /dev/null +++ b/repository/eu/stork/DocumentService/0.0.1-SNAPSHOT/maven-metadata-local.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?> +<metadata modelVersion="1.1.0"> + <groupId>eu.stork</groupId> + <artifactId>DocumentService</artifactId> + <version>0.0.1-SNAPSHOT</version> + <versioning> + <snapshot> + <localCopy>true</localCopy> + </snapshot> + <lastUpdated>20140605160207</lastUpdated> + <snapshotVersions> + <snapshotVersion> + <extension>jar</extension> + <value>0.0.1-SNAPSHOT</value> + <updated>20140605160207</updated> + </snapshotVersion> + <snapshotVersion> + <extension>pom</extension> + <value>0.0.1-SNAPSHOT</value> + <updated>20140605160207</updated> + </snapshotVersion> + <snapshotVersion> + <classifier>classes</classifier> + <extension>jar</extension> + <value>0.0.1-SNAPSHOT</value> + <updated>20140605160137</updated> + </snapshotVersion> + <snapshotVersion> + <extension>war</extension> + <value>0.0.1-SNAPSHOT</value> + <updated>20140605160137</updated> + </snapshotVersion> + </snapshotVersions> + </versioning> +</metadata> diff --git a/repository/eu/stork/DocumentService/maven-metadata-local.xml b/repository/eu/stork/DocumentService/maven-metadata-local.xml new file mode 100644 index 000000000..325a76ecd --- /dev/null +++ b/repository/eu/stork/DocumentService/maven-metadata-local.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<metadata> + <groupId>eu.stork</groupId> + <artifactId>DocumentService</artifactId> + <versioning> + <versions> + <version>0.0.1-SNAPSHOT</version> + </versions> + <lastUpdated>20140604172305</lastUpdated> + </versioning> +</metadata> |