<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.0-SNAPSHOT</version>
  	</parent>
  	<artifactId>minlog-reg-client</artifactId>
    <properties>
		<minlog-registration.version>1.2.5</minlog-registration.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>dk.sosi.seal</groupId>
	            <artifactId>seal</artifactId>
	        </dependency>
	        <dependency>
				<groupId>com.sun.xml.bind</groupId>
				<artifactId>jaxb-impl</artifactId>
			</dependency>
	        <dependency>
				<groupId>com.sun.xml.ws</groupId>
				<artifactId>jaxws-tools</artifactId>
			</dependency>
			<dependency>
				<groupId>dk.nsi.minlog.registration</groupId>
				<artifactId>minlog-registration-client</artifactId>
				<version>${minlog-registration.version}</version>
			</dependency>
			<dependency>
			    <groupId>org.apache.commons</groupId>
			    <artifactId>commons-lang3</artifactId>
			    <version>3.8.1</version>
			</dependency>

			<!-- Test dependencies -->			
			<dependency>
				<groupId>junit</groupId>
				<artifactId>junit</artifactId>
				<scope>test</scope>
			</dependency>
			<dependency>
			    <groupId>org.mockito</groupId>
			    <artifactId>mockito-core</artifactId>
			    <scope>test</scope>
			</dependency>				
  	</dependencies>
	<build>
		<finalName>minlog-reg-client</finalName>
	</build>  	
</project>