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.
189 lines
5.8 KiB
189 lines
5.8 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> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-commons-parent</artifactId> |
|
<version>3.1.8-SNAPSHOT</version> |
|
<packaging>pom</packaging> |
|
<name>Spring Cloud Commons Parent</name> |
|
<description>Spring Cloud Commons Parent</description> |
|
<url>https://projects.spring.io/spring-cloud/</url> |
|
<parent> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-build</artifactId> |
|
<version>3.1.9-SNAPSHOT</version> |
|
<relativePath/> <!-- lookup parent from repository --> |
|
</parent> |
|
<scm> |
|
<url>https://github.com/spring-cloud/spring-cloud-commons</url> |
|
<connection>scm:git:git://github.com/spring-cloud/spring-cloud-commons.git |
|
</connection> |
|
<developerConnection> |
|
scm:git:ssh://git@github.com/spring-cloud/spring-cloud-commons.git |
|
</developerConnection> |
|
<tag>HEAD</tag> |
|
</scm> |
|
<properties> |
|
<bintray.package>commons</bintray.package> |
|
<evictor.version>1.0.0</evictor.version> |
|
<!-- Deprecated - reached EOL --> |
|
<spring-security-oauth2-autoconfigure.version>2.5.2</spring-security-oauth2-autoconfigure.version> |
|
</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> |
|
<configuration> |
|
<useProjectReferences>false</useProjectReferences> |
|
<additionalConfig> |
|
<file> |
|
<name>.settings/org.eclipse.jdt.ui.prefs</name> |
|
<location> |
|
${maven.multiModuleProjectDirectory}/eclipse/org.eclipse.jdt.ui.prefs |
|
</location> |
|
</file> |
|
<file> |
|
<name>.settings/org.eclipse.jdt.core.prefs</name> |
|
<location> |
|
${maven.multiModuleProjectDirectory}/eclipse/org.eclipse.jdt.core.prefs |
|
</location> |
|
</file> |
|
</additionalConfig> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>io.spring.javaformat</groupId> |
|
<artifactId>spring-javaformat-maven-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-checkstyle-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.basepom.maven</groupId> |
|
<artifactId>duplicate-finder-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<reporting> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-checkstyle-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</reporting> |
|
|
|
<profiles> |
|
<profile> |
|
<id>spring</id> |
|
<repositories> |
|
<repository> |
|
<id>spring-snapshots</id> |
|
<name>Spring Snapshots</name> |
|
<url>https://repo.spring.io/snapshot</url> |
|
<snapshots> |
|
<enabled>true</enabled> |
|
</snapshots> |
|
</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/snapshot</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> |
|
</profiles> |
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-commons-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> |
|
<version>${project.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security.oauth.boot</groupId> |
|
<artifactId>spring-security-oauth2-autoconfigure</artifactId> |
|
<version>${spring-security-oauth2-autoconfigure.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-autoconfigure</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
<modules> |
|
<module>spring-cloud-commons-dependencies</module> |
|
<module>spring-cloud-test-support</module> |
|
<module>spring-cloud-context</module> |
|
<module>spring-cloud-context-integration-tests</module> |
|
<module>spring-cloud-context-webflux-integration-tests</module> |
|
<module>spring-cloud-commons</module> |
|
<module>spring-cloud-loadbalancer</module> |
|
<module>spring-cloud-starter</module> |
|
<module>spring-cloud-starter-bootstrap</module> |
|
<module>spring-cloud-starter-loadbalancer</module> |
|
<module>docs</module> |
|
</modules> |
|
</project>
|
|
|