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.
87 lines
2.4 KiB
87 lines
2.4 KiB
<?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"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<parent> |
|
<groupId>com.cloud</groupId> |
|
<artifactId>kicc-visual</artifactId> |
|
<version>1.0.0</version> |
|
</parent> |
|
|
|
<artifactId>kicc-sentinel-dashboard</artifactId> |
|
<packaging>jar</packaging> |
|
|
|
<dependencies> |
|
<!--注册中心客户端--> |
|
<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> |
|
<!--sentinel--> |
|
<dependency> |
|
<groupId>com.alibaba.csp</groupId> |
|
<artifactId>sentinel-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba.csp</groupId> |
|
<artifactId>sentinel-web-servlet</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba.csp</groupId> |
|
<artifactId>sentinel-transport-simple-http</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba.csp</groupId> |
|
<artifactId>sentinel-parameter-flow-control</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba.csp</groupId> |
|
<artifactId>sentinel-api-gateway-adapter-common</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
</dependency> |
|
<!--undertow容器--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-undertow</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-lang</groupId> |
|
<artifactId>commons-lang</artifactId> |
|
<version>2.6</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>true</filtering> |
|
</resource> |
|
<resource> |
|
<directory>src/main/webapp/</directory> |
|
<excludes> |
|
<exclude>resources/node_modules/**</exclude> |
|
</excludes> |
|
</resource> |
|
</resources> |
|
<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>
|
|
|