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.
186 lines
5.5 KiB
186 lines
5.5 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> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-commons-parent</artifactId> |
|
<version>4.0.1-SNAPSHOT</version> |
|
<relativePath>..</relativePath> |
|
</parent> |
|
<artifactId>spring-cloud-commons</artifactId> |
|
<packaging>jar</packaging> |
|
<name>Spring Cloud Commons</name> |
|
<description>Spring Cloud Commons</description> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<phase>test-compile</phase> |
|
<goals> |
|
<goal>test-jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<excludes> |
|
<exclude>**/*.properties</exclude> |
|
</excludes> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
<pluginManagement> |
|
<plugins> |
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
|
<plugin> |
|
<groupId>org.eclipse.m2e</groupId> |
|
<artifactId>lifecycle-mapping</artifactId> |
|
<version>1.0.0</version> |
|
<configuration> |
|
<lifecycleMappingMetadata> |
|
<pluginExecutions> |
|
<pluginExecution> |
|
<pluginExecutionFilter> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<versionRange>[3.0.0,)</versionRange> |
|
<goals> |
|
<goal>test-jar</goal> |
|
</goals> |
|
</pluginExecutionFilter> |
|
<action> |
|
<ignore></ignore> |
|
</action> |
|
</pluginExecution> |
|
</pluginExecutions> |
|
</lifecycleMappingMetadata> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
</build> |
|
|
|
<properties> |
|
<evictor.version>1.0.0</evictor.version> |
|
</properties> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-actuator</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-webflux</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-crypto</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-rsa</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.integration</groupId> |
|
<artifactId>spring-integration-jmx</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-hateoas</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<!--<dependency> |
|
<groupId>org.springframework.security.oauth.boot</groupId> |
|
<artifactId>spring-security-oauth2-autoconfigure</artifactId> |
|
<optional>true</optional> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>javax.xml.bind</groupId> |
|
<artifactId>jaxb-api</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>com.sun.activation</groupId> |
|
<artifactId>jakarta.activation</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>javax.activation</groupId> |
|
<artifactId>javax.activation-api</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency>--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-aop</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-autoconfigure-processor</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.retry</groupId> |
|
<artifactId>spring-retry</artifactId> |
|
<optional>true</optional> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>javax.annotation</groupId> |
|
<artifactId>javax.annotation-api</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.jayway.jsonpath</groupId> |
|
<artifactId>json-path</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.httpcomponents.client5</groupId> |
|
<artifactId>httpclient5</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-test-support</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.projectreactor</groupId> |
|
<artifactId>reactor-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.micrometer</groupId> |
|
<artifactId>micrometer-observation-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|