<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">
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<artifactId>documentsharing</artifactId>
		<groupId>dk.nsi.documentsharing</groupId>
		<version>0.9.8</version>
		<relativePath>../../..</relativePath>
	</parent>

	<artifactId>documentsharing-metadataprovider</artifactId>
	<name>Document Sharing Metadata Provider</name>
	<packaging>jar</packaging>
	<url>http://nsi.dk</url>

	<build>
		<finalName>documentsharing-metadataprovider</finalName>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-deploy-plugin</artifactId>
				<version>2.7</version>
				<executions>
					<execution>
						<id>deploy-file</id>
						<phase>deploy</phase>
						<goals>
							<goal>deploy-file</goal>
						</goals>
						<configuration>
							<file>${project.build.directory}/${project.artifactId}.jar</file>
							<pomFile>pom.xml</pomFile>
							<url>${deploy.repository.url}</url>
							<repositoryId>${deploy.repository.id}</repositoryId>
						</configuration>
					</execution>
				</executions>
				<configuration>
					<skip>true</skip>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<dependency>
			<groupId>javax</groupId>
			<artifactId>javaee-api</artifactId>
			<version>6.0</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
		<artifactId>cxf-api</artifactId>
			<groupId>org.apache.cxf</groupId>
			<version>2.7.13</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>dk.nsi.documentsharing</groupId>
			<artifactId>util</artifactId>
			<version>0.9.8</version>
		</dependency>
		<dependency>
			<groupId>dk.nsi.documentsharing</groupId>
			<artifactId>core</artifactId>
			<version>0.9.8</version>
		</dependency>
		<dependency>
			<groupId>dk.nsi.documentsharing</groupId>
			<artifactId>xdstransformation</artifactId>
			<version>0.9.8</version>
		</dependency>
		<dependency>
			<groupId>dk.nsi.ddsservices</groupId>
			<artifactId>ddsservices-client-types</artifactId>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymock</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>
