diff options
| author | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-01-30 19:04:02 +0100 | 
|---|---|---|
| committer | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-01-31 17:16:54 +0100 | 
| commit | 8449c5ab138f0b7a1760cb5f2aa6db2eb9d0b22e (patch) | |
| tree | d581d2001e8534dac7bc2e192a5c5aa24f89094d /repository/eu | |
| parent | b04ffb6167dca0a3d1c116953b23aebe1ddf4e32 (diff) | |
| download | moa-id-spss-8449c5ab138f0b7a1760cb5f2aa6db2eb9d0b22e.tar.gz moa-id-spss-8449c5ab138f0b7a1760cb5f2aa6db2eb9d0b22e.tar.bz2 moa-id-spss-8449c5ab138f0b7a1760cb5f2aa6db2eb9d0b22e.zip | |
added stork signature client api - untested
Diffstat (limited to 'repository/eu')
4 files changed, 109 insertions, 0 deletions
| diff --git a/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/maven-metadata-local.xml b/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/maven-metadata-local.xml new file mode 100644 index 000000000..99d92cd77 --- /dev/null +++ b/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/maven-metadata-local.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<metadata> +  <groupId>eu.stork</groupId> +  <artifactId>oasis-dss-api</artifactId> +  <version>1.0.0-SNAPSHOT</version> +  <versioning> +    <snapshot> +      <localCopy>true</localCopy> +    </snapshot> +    <lastUpdated>20140130171508</lastUpdated> +  </versioning> +</metadata> diff --git a/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/oasis-dss-api-1.0.0-SNAPSHOT.jar b/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/oasis-dss-api-1.0.0-SNAPSHOT.jarBinary files differ new file mode 100644 index 000000000..5ad0cb42e --- /dev/null +++ b/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/oasis-dss-api-1.0.0-SNAPSHOT.jar diff --git a/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/oasis-dss-api-1.0.0-SNAPSHOT.pom b/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/oasis-dss-api-1.0.0-SNAPSHOT.pom new file mode 100644 index 000000000..ef04f07c4 --- /dev/null +++ b/repository/eu/stork/oasis-dss-api/1.0.0-SNAPSHOT/oasis-dss-api-1.0.0-SNAPSHOT.pom @@ -0,0 +1,85 @@ +<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> +	<artifactId>oasis-dss-api</artifactId> +	<groupId>eu.stork</groupId> +	<version>1.0.0-SNAPSHOT</version> +	<build> +		<plugins> +			<plugin> +				<groupId>org.codehaus.mojo</groupId> +				<artifactId>jaxb2-maven-plugin</artifactId> +				<version>1.5</version> +				<executions> +					<execution> +						<id>oasis-dss</id> +						<goals> +							<goal>xjc</goal> +						</goals> +					</execution> +				</executions> +				<configuration> +					<args> +						<arg>-npa</arg> +					</args> +					<schemaDirectory>${project.basedir}/src/main/resources/schema/oasis-dss</schemaDirectory> +					<schemaFiles>oasis-dss-core-schema-v1.0-os.xsd</schemaFiles> +					<packageName>eu.stork.oasisdss.profile</packageName> +					<extension>true</extension> +				</configuration> +			</plugin> +			<plugin> +				<groupId>org.apache.maven.plugins</groupId> +				<artifactId>maven-compiler-plugin</artifactId> +				<version>2.0.2</version> +				<configuration> +					<source>1.6</source> +					<target>1.6</target> +					<encoding>${project.build.sourceEncoding}</encoding> +				</configuration> +			</plugin> +			<plugin> +				<groupId>org.apache.maven.plugins</groupId> +				<artifactId>maven-resources-plugin</artifactId> +				<version>2.4</version> +				<configuration> +					<encoding>${project.build.sourceEncoding}</encoding> +				</configuration> +			</plugin> + +		</plugins> +	</build> +	<properties> +		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> +	</properties> +	<dependencies> +		<dependency> +			<groupId>log4j</groupId> +			<artifactId>log4j</artifactId> +			<version>1.2.17</version> +		</dependency> +		<dependency> +			<groupId>xerces</groupId> +			<artifactId>xercesImpl</artifactId> +			<version>2.11.0</version> + +			<scope>provided</scope> +		</dependency> +		<dependency> +			<groupId>junit</groupId> +			<artifactId>junit</artifactId> +			<version>4.11</version> +		</dependency> +		<dependency> +			<groupId>org.apache.commons</groupId> +			<artifactId>commons-io</artifactId> +			<version>1.3.2</version> +		</dependency> +		<dependency> +			<groupId>com.sun.xml.ws</groupId> +			<artifactId>jaxws-rt</artifactId> +			<version>2.1.7</version> +		</dependency> + +	</dependencies> +</project>
\ No newline at end of file diff --git a/repository/eu/stork/oasis-dss-api/maven-metadata-local.xml b/repository/eu/stork/oasis-dss-api/maven-metadata-local.xml new file mode 100644 index 000000000..8c8297768 --- /dev/null +++ b/repository/eu/stork/oasis-dss-api/maven-metadata-local.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<metadata> +  <groupId>eu.stork</groupId> +  <artifactId>oasis-dss-api</artifactId> +  <version>1.0.0-SNAPSHOT</version> +  <versioning> +    <versions> +      <version>1.0.0-SNAPSHOT</version> +    </versions> +    <lastUpdated>20140130171508</lastUpdated> +  </versioning> +</metadata> | 
