<?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>
|
<groupId>com.se</groupId>
|
<artifactId>se-modules</artifactId>
|
<version>3.6.4</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>se-modules-system</artifactId>
|
|
<description>
|
se-modules-system系统模块
|
</description>
|
|
<dependencies>
|
|
<!-- SpringCloud Alibaba Nacos -->
|
<dependency>
|
<groupId>com.alibaba.cloud</groupId>
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
</dependency>
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
<dependency>
|
<groupId>com.alibaba.cloud</groupId>
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
</dependency>
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
<dependency>
|
<groupId>com.alibaba.cloud</groupId>
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
</dependency>
|
|
<!-- SpringBoot Actuator -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
</dependency>
|
|
<!-- Swagger UI -->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>${swagger.fox.version}</version>
|
</dependency>
|
|
<!-- Mysql Connector -->
|
<dependency>
|
<groupId>com.mysql</groupId>
|
<artifactId>mysql-connector-j</artifactId>
|
</dependency>
|
|
<!-- SE Common DataSource -->
|
<dependency>
|
<groupId>com.se</groupId>
|
<artifactId>se-common-datasource</artifactId>
|
</dependency>
|
|
<!-- SE Common DataScope -->
|
<dependency>
|
<groupId>com.se</groupId>
|
<artifactId>se-common-datascope</artifactId>
|
</dependency>
|
|
<!-- SE Common Log -->
|
<dependency>
|
<groupId>com.se</groupId>
|
<artifactId>se-common-log</artifactId>
|
</dependency>
|
|
<!-- SE Common Swagger -->
|
<dependency>
|
<groupId>com.se</groupId>
|
<artifactId>se-common-swagger</artifactId>
|
</dependency>
|
|
<!--lombok-->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>1.18.22</version>
|
<optional>true</optional>
|
</dependency>
|
|
<!-- FastDFS -->
|
<dependency>
|
<groupId>com.github.tobato</groupId>
|
<artifactId>fastdfs-client</artifactId>
|
</dependency>
|
|
<!-- Minio -->
|
<dependency>
|
<groupId>io.minio</groupId>
|
<artifactId>minio</artifactId>
|
<version>8.2.2</version>
|
<!-- <version>${minio.version}</version>-->
|
</dependency>
|
|
<!-- SE Api System -->
|
<dependency>
|
<groupId>com.se</groupId>
|
<artifactId>se-api-system</artifactId>
|
</dependency>
|
|
<!-- Apache Velocity -->
|
<dependency>
|
<groupId>org.apache.velocity</groupId>
|
<artifactId>velocity-engine-core</artifactId>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<finalName>${project.artifactId}</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|