2021-06-15 18:23:48 +08:00
|
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>2.1.2.RELEASE</version>
|
2021-06-23 23:55:15 +08:00
|
|
|
|
<relativePath/>
|
2021-06-15 18:23:48 +08:00
|
|
|
|
</parent>
|
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
|
<artifactId>system-city</artifactId>
|
|
|
|
|
<version>1.0.0.RELEASE</version>
|
2023-11-04 18:58:24 +08:00
|
|
|
|
<name>system-city</name>
|
2021-06-15 18:23:48 +08:00
|
|
|
|
<description>城市管理系统</description>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<durid.version>1.0.31</durid.version>
|
|
|
|
|
<spring-boot.version>2.1.2.RELEASE</spring-boot.version>
|
|
|
|
|
<spring-mybatis.version>1.3.2</spring-mybatis.version>
|
|
|
|
|
<spring-jdbc.version>5.1.4.RELEASE</spring-jdbc.version>
|
|
|
|
|
<mysql.version>5.1.47</mysql.version>
|
|
|
|
|
<freemarker.version>2.3.28</freemarker.version>
|
|
|
|
|
<druid.version>1.1.9</druid.version>
|
|
|
|
|
<uedirot.version>1.4.3.3</uedirot.version>
|
2021-07-19 15:40:55 +08:00
|
|
|
|
<cm-cloud.version>1.0.2-SNAPSHOT</cm-cloud.version>
|
2021-06-15 18:23:48 +08:00
|
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<version>${mysql.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-10-26 10:46:40 +08:00
|
|
|
|
<!-- mongodb start -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- mongodb end -->
|
|
|
|
|
|
2021-06-15 18:23:48 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
|
<version>${spring-jdbc.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${spring-mybatis.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${druid.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 富文本 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.gitee.qdbp.thirdparty</groupId>
|
|
|
|
|
<artifactId>ueditor</artifactId>
|
|
|
|
|
<version>${uedirot.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- fast excel -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
<version>2.0.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
|
<artifactId>cloud-common-plugin-oauth</artifactId>
|
|
|
|
|
<version>${cm-cloud.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
|
<artifactId>cloud-common-article</artifactId>
|
|
|
|
|
<version>${cm-cloud.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
|
<artifactId>cloud-common-plugin-dictionary</artifactId>
|
|
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
|
<artifactId>cloud-common-plugin-map</artifactId>
|
|
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
|
<artifactId>itextpdf</artifactId>
|
|
|
|
|
<version>5.5.13.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.itextpdf.tool</groupId>
|
|
|
|
|
<artifactId>xmlworker</artifactId>
|
|
|
|
|
<version>5.5.13.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
|
<artifactId>itext-asian</artifactId>
|
|
|
|
|
<version>5.2.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
|
<artifactId>cloud-central-control-client</artifactId>
|
|
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.16</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
|
<version>4.1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
<version>4.1.0</version>
|
|
|
|
|
</dependency>
|
2021-06-23 23:55:15 +08:00
|
|
|
|
|
2023-11-04 18:58:24 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
<version>1.14.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-06-23 23:55:15 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2021-06-15 18:23:48 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2023-02-20 15:42:43 +08:00
|
|
|
|
<!-- 打包时去除第三方依赖 -->
|
2021-06-15 18:23:48 +08:00
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2023-02-20 15:42:43 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
<layout>ZIP</layout>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>
|
|
|
|
|
<groupId>non-exists</groupId>
|
|
|
|
|
<artifactId>non-exists</artifactId>
|
|
|
|
|
</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- 拷贝第三方依赖文件到指定目录 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<!-- target/lib 是依赖jar包的输出目录,根据自己喜好配置 -->
|
|
|
|
|
<outputDirectory>target/lib</outputDirectory>
|
|
|
|
|
<excludeTransitive>false</excludeTransitive>
|
|
|
|
|
<stripVersion>false</stripVersion>
|
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- 排除静态资源,静态资源自行拷贝 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/*.properties</exclude>
|
|
|
|
|
<exclude>**/*.xml</exclude>
|
|
|
|
|
<exclude>**/*.yml</exclude>
|
|
|
|
|
<exclude>static/**</exclude>
|
|
|
|
|
<exclude>templates/**</exclude>
|
|
|
|
|
<exclude>mybatis/**</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
2021-06-15 18:23:48 +08:00
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|