<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>
	<dependencies>
		<dependency>
			<groupId>dk.sdsd.nsp</groupId>
			<artifactId>nsp-util</artifactId>
			<version>1.0.11</version>
		</dependency>

		<dependency>
			<groupId>dk.nsp.msbutil</groupId>
			<artifactId>msbutil-interface</artifactId>
			<version>${project.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>		
	</dependencies>
	<artifactId>msbutil-common</artifactId>
	<build>
		<finalName>msbutil-common</finalName>
	</build>	
</project>