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.
120 lines
3.6 KiB
120 lines
3.6 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> |
|
<parent> |
|
<artifactId>spring-cloud-dependencies-parent</artifactId> |
|
<groupId>org.springframework.cloud</groupId> |
|
<version>3.1.9-SNAPSHOT</version> |
|
<relativePath/> |
|
</parent> |
|
<artifactId>spring-cloud-openfeign-dependencies</artifactId> |
|
<version>3.1.9-SNAPSHOT</version> |
|
<packaging>pom</packaging> |
|
<name>spring-cloud-openfeign-dependencies</name> |
|
<description>Spring Cloud OpenFeign Dependencies</description> |
|
<properties> |
|
<feign.version>11.10</feign.version> |
|
<feign-form.version>3.8.0</feign-form.version> |
|
<!-- Deprecated - reached EOL --> |
|
<spring-security-oauth2-autoconfigure.version>2.5.2</spring-security-oauth2-autoconfigure.version> |
|
</properties> |
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.security.oauth.boot</groupId> |
|
<artifactId>spring-security-oauth2-autoconfigure</artifactId> |
|
<version>${spring-security-oauth2-autoconfigure.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-openfeign-core</artifactId> |
|
<version>${project.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-openfeign</artifactId> |
|
<version>${project.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.github.openfeign</groupId> |
|
<artifactId>feign-bom</artifactId> |
|
<version>${feign.version}</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.github.openfeign.form</groupId> |
|
<artifactId>feign-form-spring</artifactId> |
|
<version>${feign-form.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-fileupload</groupId> |
|
<artifactId>commons-fileupload</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-fileupload</groupId> |
|
<artifactId>commons-fileupload</artifactId> |
|
<version>1.5</version> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
<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> |
|
<releases> |
|
<enabled>false</enabled> |
|
</releases> |
|
</repository> |
|
<repository> |
|
<id>spring-milestones</id> |
|
<name>Spring Milestones</name> |
|
<url>https://repo.spring.io/milestone</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/milestone</url> |
|
<snapshots> |
|
<enabled>false</enabled> |
|
</snapshots> |
|
</pluginRepository> |
|
</pluginRepositories> |
|
</profile> |
|
</profiles> |
|
</project>
|
|
|