<?xml version="1.0" encoding="UTF-8"?>
<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>org.springframework.cloud</groupId>
  <artifactId>spring-cloud-parent</artifactId>
  <version>1.1.0.M2</version>
  <packaging>pom</packaging>
  <name>Spring Cloud Parent</name>
  <parent>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-parent</artifactId>
	<version>1.3.0.RC1</version>
	<relativePath /> <!-- lookup parent from repository -->
  </parent>
  <modules>
	<module>spring-cloud-build</module>
  </modules>
  <properties>
    <lombok.version>1.16.6</lombok.version>
  </properties>
  <dependencyManagement>
	<dependencies>
 	  <dependency>
		<groupId>org.springframework.security</groupId>
		<artifactId>spring-security-rsa</artifactId>
		<version>1.0.1.RELEASE</version>
	  </dependency>
	  <dependency>
		<groupId>org.projectlombok</groupId>
		<artifactId>lombok</artifactId>
		<version>${lombok.version}</version>
	  </dependency>
	</dependencies>
  </dependencyManagement>
  <profiles>
 	<profile>
	  <id>central</id>
	  <build>
		<plugins>
		  <plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-gpg-plugin</artifactId>
			<executions>
			  <execution>
				<id>sign-artifacts</id>
				<phase>verify</phase>
				<goals>
				  <goal>sign</goal>
				</goals>
			  </execution>
			</executions>
		  </plugin>
		</plugins>
	  </build>
	</profile>     
	<profile>
	  <id>spring</id>
	  <repositories>
		<repository>
		  <id>spring-snapshots</id>
		  <name>Spring Snapshots</name>
		  <url>http://repo.spring.io/libs-snapshot-local</url>
		  <snapshots>
			<enabled>true</enabled>
		  </snapshots>
		</repository>
		<repository>
		  <id>spring-milestones</id>
		  <name>Spring Milestones</name>
		  <url>http://repo.spring.io/libs-milestone-local</url>
		  <snapshots>
			<enabled>false</enabled>
		  </snapshots>
		</repository>
		<repository>
		  <id>spring-releases</id>
		  <name>Spring Releases</name>
		  <url>http://repo.spring.io/release</url>
		  <snapshots>
			<enabled>false</enabled>
		  </snapshots>
		</repository>
	  </repositories>
	  <pluginRepositories>
		<pluginRepository>
		  <id>spring-snapshots</id>
		  <name>Spring Snapshots</name>
		  <url>http://repo.spring.io/libs-snapshot-local</url>
		  <snapshots>
			<enabled>true</enabled>
		  </snapshots>
		</pluginRepository>
		<pluginRepository>
		  <id>spring-milestones</id>
		  <name>Spring Milestones</name>
		  <url>http://repo.spring.io/libs-milestone-local</url>
		  <snapshots>
			<enabled>false</enabled>
		  </snapshots>
		</pluginRepository>
	  </pluginRepositories>
    </profile>
  </profiles>
</project>
