2019-02-04 23:42:49 +08:00
|
|
|
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>blade-tool</artifactId>
|
|
|
|
<groupId>org.springblade</groupId>
|
2019-08-19 22:26:45 +08:00
|
|
|
<version>2.4.1</version>
|
2019-02-04 23:42:49 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>blade-core-cloud</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<version>${blade.tool.version}</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
|
|
<version>${spring.boot.admin.version}</version>
|
|
|
|
</dependency>
|
2019-02-17 23:14:46 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2019-02-04 23:42:49 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2019-08-04 20:56:51 +08:00
|
|
|
<!-- Nacos -->
|
2019-02-04 23:42:49 +08:00
|
|
|
<dependency>
|
2019-08-04 20:56:51 +08:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
2019-02-05 22:25:11 +08:00
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
2019-02-10 19:06:17 +08:00
|
|
|
<version>${alibaba.cloud.version}</version>
|
2019-02-04 23:42:49 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-08-04 20:56:51 +08:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
2019-02-05 22:25:11 +08:00
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
2019-02-10 19:06:17 +08:00
|
|
|
<version>${alibaba.cloud.version}</version>
|
|
|
|
</dependency>
|
2019-08-04 20:56:51 +08:00
|
|
|
<!-- Sentinel -->
|
2019-02-10 19:06:17 +08:00
|
|
|
<dependency>
|
2019-08-04 20:56:51 +08:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
2019-02-10 19:06:17 +08:00
|
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
|
|
<version>${alibaba.cloud.version}</version>
|
2019-02-04 23:42:49 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|