<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>org.zalando.stups.build</groupId>
		<artifactId>stups-parent</artifactId>
		<version>6</version>
		<relativePath />
	</parent>
	<groupId>org.zalando.stups</groupId>
	<artifactId>crypto-parent</artifactId>
	<version>0.9.0</version>
	<packaging>pom</packaging>

	<properties>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<java.source>1.7</java.source>
		<java.target>1.7</java.target>

		<coveralls.dryRun>true</coveralls.dryRun>
		<main.basedir>${basedir}</main.basedir>
	</properties>

	<modules>
		<module>crypto-common</module>
		<module>crypto-spring</module>
		<module>crypto-keyczar</module>
		<module>crypto-spring-boot</module>
		<module>crypto-aws-kms</module>
	</modules>

	<profiles>
		<profile>
			<id>travis</id>
			<properties>
				<coveralls.dryRun>false</coveralls.dryRun>
			</properties>
		</profile>
	</profiles>

	<organization>
		<name>Zalando SE</name>
		<url>https://tech.zalando.com/</url>
	</organization>

	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<developers>
		<developer>
			<id>jbellman</id>
			<name>Jörg Bellmann</name>
			<organization>Zalando SE</organization>
			<email>joerg.bellmann@zalando.de</email>
		</developer>
	</developers>


	<scm>
		<url>https://github.com/zalando/crypto.git</url>
		<connection>scm:git:https://github.com/zalando/crypto.git</connection>
		<developerConnection>scm:git:https://github.com/zalando/crypto.git</developerConnection>
	  <tag>0.9.0</tag>
  </scm>
</project>