You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
239 lines
7.2 KiB
239 lines
7.2 KiB
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-gateway</artifactId> |
|
<version>2.0.5.BUILD-SNAPSHOT</version> |
|
<packaging>pom</packaging> |
|
|
|
<name>Spring Cloud Gateway</name> |
|
<description>Spring Cloud Gateway</description> |
|
|
|
<parent> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-build</artifactId> |
|
<version>2.0.5.BUILD-SNAPSHOT</version> |
|
<relativePath/> |
|
</parent> |
|
<scm> |
|
<url>https://github.com/spring-cloud-incubator/spring-cloud-gateway</url> |
|
<connection>scm:git:git://github.com/spring-cloud-incubator/spring-cloud-gateway.git</connection> |
|
<developerConnection>scm:git:ssh://git@github.com/spring-cloud-incubator/spring-cloud-gateway.git |
|
</developerConnection> |
|
<tag>HEAD</tag> |
|
</scm> |
|
|
|
<licenses> |
|
<license> |
|
<name>Apache License, Version 2.0</name> |
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url> |
|
</license> |
|
</licenses> |
|
<developers> |
|
<developer> |
|
<id>sgibb</id> |
|
<name>Spencer Gibb</name> |
|
<email>sgibb at pivotal.io</email> |
|
<organization>Pivotal Software, Inc.</organization> |
|
<organizationUrl>https://www.spring.io</organizationUrl> |
|
<roles> |
|
<role>Project lead</role> |
|
</roles> |
|
</developer> |
|
</developers> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
<java.version>1.8</java.version> |
|
<spring-cloud-commons.version>2.0.1.BUILD-SNAPSHOT</spring-cloud-commons.version> |
|
<spring-cloud-netflix.version>2.0.1.BUILD-SNAPSHOT</spring-cloud-netflix.version> |
|
<embedded-redis.version>0.6</embedded-redis.version> |
|
</properties> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-gateway-dependencies</artifactId> |
|
<version>${project.version}</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-commons-dependencies</artifactId> |
|
<version>${spring-cloud-commons.version}</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-netflix-dependencies</artifactId> |
|
<version>${spring-cloud-netflix.version}</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-netflix-ribbon</artifactId> |
|
<version>${spring-cloud-netflix.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>com.netflix.ribbon</groupId> |
|
<artifactId>ribbon-transport</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>io.reactivex</groupId> |
|
<artifactId>rxnetty</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-test-support</artifactId> |
|
<scope>test</scope> |
|
<version>${spring-cloud-commons.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> |
|
<version>${spring-cloud-netflix.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId> |
|
<version>${spring-cloud-netflix.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-devtools</artifactId> |
|
<version>${spring-boot.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.github.kstyrc</groupId> |
|
<artifactId>embedded-redis</artifactId> |
|
<version>${embedded-redis.version}</version> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
|
|
<modules> |
|
<module>spring-cloud-gateway-dependencies</module> |
|
<module>spring-cloud-gateway-mvc</module> |
|
<module>spring-cloud-gateway-webflux</module> |
|
<module>spring-cloud-gateway-core</module> |
|
<module>spring-cloud-starter-gateway</module> |
|
<module>spring-cloud-gateway-sample</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>
|
|
|