<?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.terra</groupId>
|
<artifactId>terra</artifactId>
|
<version>1.0.2</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>se-system</artifactId>
|
|
<description>
|
系统模块
|
</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>
|
|
<!-- Mysql Connector -->
|
<dependency>
|
<groupId>com.mysql</groupId>
|
<artifactId>mysql-connector-j</artifactId>
|
</dependency>
|
|
|
|
<!-- SpringBoot Web -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
|
<!--mybatis-plus-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.5.1</version>
|
</dependency>
|
|
<!--war:servlet-->
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>javax.servlet-api</artifactId>
|
<version>3.1.0</version>
|
<scope>provided</scope>
|
</dependency>
|
|
<!--websocket-->
|
<dependency>
|
<groupId>javax.websocket</groupId>
|
<artifactId>javax.websocket-api</artifactId>
|
<version>1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
</dependency>
|
|
<!--redis-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
|
<!--postgresql-->
|
<dependency>
|
<groupId>org.postgresql</groupId>
|
<artifactId>postgresql</artifactId>
|
<scope>runtime</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
</dependency>
|
|
<!--lombok-->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<optional>true</optional>
|
</dependency>
|
|
<!--gdal-->
|
<dependency>
|
<groupId>org.gdal</groupId>
|
<artifactId>gdal</artifactId>
|
<version>3.2.0</version>
|
</dependency>
|
|
<!--zip4j-->
|
<dependency>
|
<groupId>net.lingala.zip4j</groupId>
|
<artifactId>zip4j</artifactId>
|
<version>2.6.4</version>
|
</dependency>
|
|
<!--easyexcel-->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>2.2.10</version>
|
</dependency>
|
|
<!--commons-fileupload-->
|
<dependency>
|
<groupId>commons-fileupload</groupId>
|
<artifactId>commons-fileupload</artifactId>
|
<version>1.4</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.11.0</version>
|
</dependency>
|
|
<!--JTS-->
|
<dependency>
|
<groupId>org.locationtech.jts</groupId>
|
<artifactId>jts-core</artifactId>
|
<version>1.19.0</version>
|
</dependency>
|
|
<!--oshi-->
|
<dependency>
|
<groupId>com.github.oshi</groupId>
|
<artifactId>oshi-core</artifactId>
|
<version>4.4.2</version>
|
</dependency>
|
|
<!--swagger-->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>2.9.2</version>
|
</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>
|