<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>
	<groupId>dk.sosi.seal</groupId>
	<artifactId>seal-common-exchange</artifactId>
	<version>3.0.0-SNAPSHOT</version>
	<description>SEAL3 Exchange Common package</description>

	<scm>
		<connection>scm:svn:https://svn.nspop.dk/svn/libraries/seal/java/common-exchange/trunk/</connection>
	</scm>

	<properties>
		<java.version>1.8</java.version>
		<seal.common.version>3.0.0-SNAPSHOT</seal.common.version>
	</properties>

	<repositories>
		<repository>
			<id>NSP Nexus</id>
			<url>https://nexus.nspop.dk/nexus/content/groups/public</url>
		</repository>
		<repository>
			<id>NSP Nexus Snapshot</id>
			<url>https://nexus.nspop.dk/nexus/content/repositories/snapshots</url>
		</repository>
	</repositories>

	<dependencies>
		<dependency>
			<groupId>org.apache.ws.security</groupId>
			<artifactId>wss4j</artifactId>
			<!-- Beware that some wss4j classes are copied to the dk.sosi.seal.transform 
				package and slightly extended. -->
			<version>1.5.12</version>
		</dependency>
		<dependency>
			<groupId>${groupId}</groupId>
			<artifactId>seal-common</artifactId>
			<version>${seal.common.version}</version>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>license-maven-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.8.1</version>
				<configuration>
					<source>${java.version}</source>
					<target>${java.version}</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>