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.
68 lines
2.0 KiB
68 lines
2.0 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-visual</artifactId> |
|
<version>1.0.0</version> |
|
</parent> |
|
|
|
<artifactId>kicc-spring-dashboard</artifactId> |
|
<packaging>jar</packaging> |
|
|
|
<description>kicc 监控模块,基于 spring boot admin</description> |
|
|
|
<dependencies> |
|
<!--监控服务端--> |
|
<dependency> |
|
<groupId>de.codecentric</groupId> |
|
<artifactId>spring-boot-admin-starter-server</artifactId> |
|
<version>${spring-boot-admin.version}</version> |
|
</dependency> |
|
<!--注册中心客户端--> |
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
|
</dependency> |
|
<!--配置中心客户端--> |
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
|
</dependency> |
|
<!--断路器依赖--> |
|
<dependency> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-common-feign</artifactId> |
|
</dependency> |
|
<!--undertow容器--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-undertow</artifactId> |
|
</dependency> |
|
<!--web 模块--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
</dependency> |
|
<!--security--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-security</artifactId> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>io.fabric8</groupId> |
|
<artifactId>docker-maven-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|