<?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">
|
<parent>
|
<artifactId>xboot-plus-modules</artifactId>
|
<groupId>cn.exrick</groupId>
|
<version>1.0-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>xboot-admin</artifactId>
|
|
<dependencies>
|
<!-- 引入功能模块 -->
|
<dependency>
|
<groupId>cn.exrick</groupId>
|
<artifactId>xboot-base</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.exrick</groupId>
|
<artifactId>xboot-file</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.exrick</groupId>
|
<artifactId>xboot-generator</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.exrick</groupId>
|
<artifactId>xboot-quartz</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.exrick</groupId>
|
<artifactId>xboot-open</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.exrick</groupId>
|
<artifactId>xboot-your</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
|
<!-- 数据库连接池 -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
</dependency>
|
<!-- Mysql Connector -->
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>de.codecentric</groupId>
|
<artifactId>spring-boot-admin-starter-server</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>de.codecentric</groupId>
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
</dependency>
|
<!-- Actuator -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>${spring.boot.version}</version>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
<configuration>
|
<includeSystemScope>true</includeSystemScope>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|