<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>
	<groupId>dk.nsi.nsp.nll</groupId>
	<artifactId>nll-vault</artifactId>
	<packaging>jar</packaging>
	<version>1.0.0</version>
	<name>NSP Luna Library - Credential Vault</name>

	<parent>
		<groupId>dk.nsi.nsp.nll</groupId>
		<artifactId>nll</artifactId>
		<version>1.0.0</version>
		<relativePath>../../pom.xml</relativePath>
	</parent>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>dk.sosi.seal</groupId>
			<artifactId>seal</artifactId>
			<version>2.2.2</version>
			<exclusions>
				<exclusion>
					<groupId>dk.sosi.seal</groupId>
					<artifactId>luna-dummy</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>com.safenetinc</groupId>
			<artifactId>luna</artifactId>
			<version>1.0</version>
			<scope>system</scope>
			<!-- This jar file is not available from NSP Nexus and must be obtained through NSI -->
			<systemPath>${project.basedir}/../../lib/LunaProvider.jar</systemPath>
		</dependency>
	</dependencies>

	<build>
		<finalName>nll</finalName>
	</build>

</project>
