<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>
	<artifactId>symphony-java-client-identity</artifactId>
	<packaging>jar</packaging>
	<name>Symphony Java Client Identity</name>
    <version>4.55.12</version>
	
	<parent>
	    <groupId>com.github.deutschebank.symphony</groupId>
	    <artifactId>symphony-java-client-parent</artifactId>
	    <version>4.55.12</version>
  	</parent>
	
	
 	<developers>
	    <developer>
	      <name>Rob Moffat</name>
	      <email>robert.moffat@db.com</email>
	    </developer>
	</developers>
	
	<properties>
		<maven.compiler.source>1.8</maven.compiler.source>
		<maven.compiler.target>1.8</maven.compiler.target>
	</properties>

	<build>
		<plugins>
  			<plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>3.0.0-M3</version>
                    <configuration>
                            <systemPropertyVariables>
                                    <symphony-test-identity>${symphony-test-identity}</symphony-test-identity>
                                    <symphony-develop-bot2-identity>${symphony-develop-bot2-identity}</symphony-develop-bot2-identity>
                            </systemPropertyVariables>
                    </configuration>
            </plugin>
		</plugins>
	</build>

	<dependencies>
	
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-annotations</artifactId>
			<version>${jackson.version}</version>
			<scope>compile</scope>
		</dependency>
		
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</artifactId>
			<version>${jackson-databind.version}</version>
			<scope>compile</scope>
		</dependency>
	
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
  
</project>
