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.
236 lines
6.9 KiB
236 lines
6.9 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
xmlns="http://maven.apache.org/POM/4.0.0" |
|
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> |
|
<artifactId>spring-cloud-openfeign</artifactId> |
|
<version>3.0.8-SNAPSHOT</version> |
|
<packaging>pom</packaging> |
|
<name>Spring Cloud OpenFeign</name> |
|
<description>Spring Cloud OpenFeign</description> |
|
<parent> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-build</artifactId> |
|
<version>3.0.6-SNAPSHOT</version> |
|
<relativePath/> |
|
</parent> |
|
<scm> |
|
<url>https://github.com/spring-cloud/spring-cloud-openfeign</url> |
|
<connection>scm:git:git://github.com/spring-cloud/spring-cloud-openfeign.git |
|
</connection> |
|
<developerConnection> |
|
scm:git:ssh://git@github.com/spring-cloud/spring-cloud-openfeign.git |
|
</developerConnection> |
|
<tag>HEAD</tag> |
|
</scm> |
|
<properties> |
|
<main.basedir>${basedir}</main.basedir> |
|
<jackson.version>2.11.3</jackson.version> |
|
<spring-cloud-commons.version>3.0.7-SNAPSHOT</spring-cloud-commons.version> |
|
|
|
<!-- Plugin versions --> |
|
<maven-eclipse-plugin.version>2.10</maven-eclipse-plugin.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.codehaus.mojo</groupId> |
|
<artifactId>flatten-maven-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-eclipse-plugin</artifactId> |
|
<version>${maven-eclipse-plugin.version}</version> |
|
<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.8</source> |
|
<target>1.8</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-checkstyle-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>io.spring.javaformat</groupId> |
|
<artifactId>spring-javaformat-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<reporting> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-checkstyle-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</reporting> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<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-openfeign-dependencies</artifactId> |
|
<version>${project.version}</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</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>com.fasterxml.jackson.dataformat</groupId> |
|
<artifactId>jackson-dataformat-smile</artifactId> |
|
<version>${jackson.version}</version> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
<modules> |
|
<module>spring-cloud-openfeign-dependencies</module> |
|
<module>spring-cloud-openfeign-core</module> |
|
<module>spring-cloud-starter-openfeign</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>
|
|
|