<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>
	<parent>
		<groupId>dk.nsp.msbutil</groupId>
    	<artifactId>msbutil</artifactId>
    	<version>1.0.3</version>
  	</parent>
  	<artifactId>consent-client</artifactId>
  	<properties>
  		<consent-verification.version>1.1.6</consent-verification.version>
  	</properties>
  	<dependencies>
 		<dependency>
			<groupId>dk.nsp.msbutil</groupId>
			<artifactId>msbutil-interface</artifactId>
			<version>${project.version}</version>
		</dependency>
 		<dependency>
			<groupId>dk.nsp.msbutil</groupId>
			<artifactId>msbutil-common</artifactId>
			<version>${project.version}</version>
		</dependency>

        <dependency>
			<groupId>com.sun.xml.bind</groupId>
			<artifactId>jaxb-impl</artifactId>
		</dependency>
        <dependency>
			<groupId>com.sun.xml.ws</groupId>
			<artifactId>jaxws-tools</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>			
			<groupId>dk.nsi.consentservices.verification</groupId>			
			<artifactId>consent-verification-client</artifactId>			
			<version>${consent-verification.version}</version>
		</dependency>

		<dependency>
			<groupId>dk.sdsd.nsp</groupId>
			<artifactId>nsp-util</artifactId>
			<version>1.0.11</version>
		</dependency>

		<dependency>
			<groupId>commons-pool</groupId>
			<artifactId>commons-pool</artifactId>
		</dependency>

		<!--  Test dependencies -->			
		<dependency>
			<groupId>dk.sosi.seal</groupId>
			<artifactId>seal</artifactId>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		
		<dependency>
		    <groupId>org.apache.commons</groupId>
		    <artifactId>commons-lang3</artifactId>
		    <version>3.8.1</version>
		</dependency>	
		
		<dependency>
		    <groupId>org.mockito</groupId>
		    <artifactId>mockito-core</artifactId>
		    <scope>test</scope>
		</dependency>				
			
  	</dependencies>
	<build>
		<finalName>consent-client</finalName>
	</build>  	
</project>