36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
|
|
<?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>
|
||
|
|
|
||
|
|
<groupId>business.chaoran</groupId>
|
||
|
|
<artifactId>admin</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
|
||
|
|
<name>admin</name>
|
||
|
|
<description>Demo project for Spring Cloud Admin</description>
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<groupId>business.chaoran</groupId>
|
||
|
|
<artifactId>monitor</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<admin-server.version>2.1.6</admin-server.version>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>de.codecentric</groupId>
|
||
|
|
<artifactId>spring-boot-admin-starter-server</artifactId>
|
||
|
|
<version>${admin-server.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|