|
|
|
<?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>
|
|
|
|
<artifactId>spring-cloud-netflix</artifactId>
|
|
|
|
<version>1.2.0.BUILD-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Spring Cloud Netflix</name>
|
|
|
|
<description>Spring Cloud Netflix</description>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-build</artifactId>
|
|
|
|
<version>1.2.0.BUILD-SNAPSHOT</version>
|
|
|
|
<relativePath />
|
|
|
|
</parent>
|
|
|
|
<scm>
|
|
|
|
<url>https://github.com/spring-cloud/spring-cloud-netflix</url>
|
|
|
|
<connection>scm:git:git://github.com/spring-cloud/spring-cloud-netflix.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@github.com/spring-cloud/spring-cloud-netflix.git</developerConnection>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
</scm>
|
|
|
|
<properties>
|
|
|
|
<bintray.package>netflix</bintray.package>
|
|
|
|
<main.basedir>${basedir}</main.basedir>
|
|
|
|
<netty.version>4.0.27.Final</netty.version>
|
|
|
|
<jackson.version>2.7.3</jackson.version>
|
|
|
|
|
|
|
|
<!-- Sonar -->
|
|
|
|
<surefire.plugin.version>2.19.1</surefire.plugin.version>
|
|
|
|
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
|
|
|
|
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
|
|
|
|
<sonar.jacoco.reportPath>${project.basedir}/../target/jacoco.exec</sonar.jacoco.reportPath>
|
|
|
|
<sonar.language>java</sonar.language>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<useProjectReferences>false</useProjectReferences>
|
|
|
|
<additionalConfig>
|
|
|
|
<file>
|
|
|
|
<name>.settings/org.eclipse.jdt.ui.prefs</name>
|
|
|
|
<location>${main.basedir}/eclipse/org.eclipse.jdt.ui.prefs</location>
|
|
|
|
</file>
|
|
|
|
<file>
|
|
|
|
<name>.settings/org.eclipse.jdt.core.prefs</name>
|
|
|
|
<location>${main.basedir}/eclipse/org.eclipse.jdt.core.prefs</location>
|
|
|
|
</file>
|
|
|
|
</additionalConfig>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-netflix-dependencies</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-codec-http</artifactId>
|
|
|
|
<version>${netty.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-transport-native-epoll</artifactId>
|
|
|
|
<version>${netty.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
<artifactId>jackson-dataformat-smile</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<modules>
|
|
|
|
<module>spring-cloud-netflix-dependencies</module>
|
|
|
|
<module>spring-cloud-netflix-core</module>
|
|
|
|
<module>spring-cloud-netflix-hystrix-dashboard</module>
|
|
|
|
<module>spring-cloud-netflix-hystrix-amqp</module>
|
|
|
|
<module>spring-cloud-netflix-hystrix-stream</module>
|
|
|
|
<module>spring-cloud-netflix-eureka-client</module>
|
|
|
|
<module>spring-cloud-netflix-eureka-server</module>
|
|
|
|
<module>spring-cloud-netflix-spectator</module>
|
|
|
|
<module>spring-cloud-netflix-turbine</module>
|
|
|
|
<module>spring-cloud-netflix-turbine-stream</module>
|
|
|
|
<module>spring-cloud-netflix-sidecar</module>
|
|
|
|
<module>spring-cloud-starter-archaius</module>
|
|
|
|
<module>spring-cloud-starter-atlas</module>
|
|
|
|
<module>spring-cloud-starter-eureka</module>
|
|
|
|
<module>spring-cloud-starter-eureka-server</module>
|
|
|
|
<module>spring-cloud-starter-feign</module>
|
|
|
|
<module>spring-cloud-starter-hystrix</module>
|
|
|
|
<module>spring-cloud-starter-hystrix-dashboard</module>
|
|
|
|
<module>spring-cloud-starter-ribbon</module>
|
|
|
|
<module>spring-cloud-starter-spectator</module>
|
|
|
|
<module>spring-cloud-starter-turbine</module>
|
|
|
|
<module>spring-cloud-starter-turbine-amqp</module>
|
|
|
|
<module>spring-cloud-starter-turbine-stream</module>
|
|
|
|
<module>spring-cloud-starter-zuul</module>
|
|
|
|
<module>docs</module>
|
|
|
|
</modules>
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>spring</id>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spring-snapshots</id>
|
|
|
|
<name>Spring Snapshots</name>
|
|
|
|
<url>https://repo.spring.io/libs-snapshot-local</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>spring-milestones</id>
|
|
|
|
<name>Spring Milestones</name>
|
|
|
|
<url>https://repo.spring.io/libs-milestone-local</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>spring-releases</id>
|
|
|
|
<name>Spring Releases</name>
|
|
|
|
<url>https://repo.spring.io/release</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-snapshots</id>
|
|
|
|
<name>Spring Snapshots</name>
|
|
|
|
<url>https://repo.spring.io/libs-snapshot-local</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
</pluginRepository>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-milestones</id>
|
|
|
|
<name>Spring Milestones</name>
|
|
|
|
<url>https://repo.spring.io/libs-milestone-local</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</pluginRepository>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-releases</id>
|
|
|
|
<name>Spring Releases</name>
|
|
|
|
<url>https://repo.spring.io/libs-release-local</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>sonar</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>pre-unit-test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<propertyName>surefireArgLine</propertyName>
|
|
|
|
<destFile>${project.build.directory}/jacoco.exec</destFile>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>post-unit-test</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<!-- Sets the path to the file which contains the execution data. -->
|
|
|
|
<dataFile>${project.build.directory}/jacoco.exec</dataFile>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- Sets the VM argument line used when unit tests are run. -->
|
|
|
|
<argLine>${surefireArgLine}</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
</project>
|