<?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>1.5.6.RELEASE</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
<groupId>fkzy.operation</groupId>
|
|
<artifactId>fkzy_operation</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>fkzy_operation</name>
|
|
<description>fkzy_operation</description>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
<!--修改thymeleaf版本-->
|
|
<thymeleaf.version>3.0.3.RELEASE</thymeleaf.version>
|
|
<thymeleaf-layout-dialect.version>2.1.0</thymeleaf-layout-dialect.version>
|
|
<geotools.version>23.3</geotools.version>
|
|
<!-- <geotools.version>25.3.01</geotools.version>-->
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-pool2</artifactId>
|
|
<version>2.4.2</version>
|
|
</dependency>
|
|
|
|
<!-- mysql 8.0 -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.11</version>
|
|
</dependency>
|
|
|
|
<!-- SpringBoot Web容器 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
<version>2.5.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
</dependency>
|
|
<!-- lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.12</version>
|
|
</dependency>
|
|
|
|
<!-- SpringBoot 测试 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- spring cloud 上下文-->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-context</artifactId>
|
|
<version>1.2.4.RELEASE</version>
|
|
</dependency>
|
|
|
|
<!-- junit -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 热部署 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
<optional>false</optional>
|
|
</dependency>
|
|
|
|
<!-- 数据库连接池 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>1.1.21</version>
|
|
</dependency>
|
|
|
|
<!-- DM8 -->
|
|
<!-- 达梦数据库依赖 -->
|
|
<dependency>
|
|
<groupId>com.dameng</groupId>
|
|
<artifactId>DmJdbcDriver18</artifactId>
|
|
<version>8.1.1.193</version>
|
|
</dependency>
|
|
|
|
<!-- mybatis plus -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>3.3.2</version>
|
|
</dependency>
|
|
|
|
<!--redis-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-redis</artifactId>
|
|
<version>1.3.5.RELEASE</version>
|
|
</dependency>
|
|
|
|
<!-- fastjson -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.83</version>
|
|
</dependency>
|
|
|
|
<!-- swagger2 -->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>2.4.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>2.4.0</version>
|
|
</dependency>
|
|
|
|
|
|
<!--常用工具类 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.9</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.4</version>
|
|
</dependency>
|
|
|
|
<!--io常用工具类 -->
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.6</version>
|
|
</dependency>
|
|
|
|
<!--minio -->
|
|
<dependency>
|
|
<groupId>io.minio</groupId>
|
|
<artifactId>minio</artifactId>
|
|
<version>7.0.2-all</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/minio-7.0.2-all.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
<version>4.1.17.Final</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>1.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.14</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.8.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.11.0</version>
|
|
</dependency>
|
|
|
|
<!-- jwt -->
|
|
<dependency>
|
|
<groupId>com.nimbusds</groupId>
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
|
<version>6.0</version>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.kingbase8.jdbc</groupId>-->
|
|
<!-- <artifactId>kingbase8</artifactId>-->
|
|
<!-- <version>8.6.0</version>-->
|
|
<!-- <scope>system</scope>-->
|
|
<!-- <systemPath>${pom.basedir}/lib/kingbase8-8.6.0.jar</systemPath>-->
|
|
<!-- </dependency>-->
|
|
<!--导出word-->
|
|
<dependency>
|
|
<groupId>cn.afterturn</groupId>
|
|
<artifactId>easypoi-base</artifactId>
|
|
<version>3.0.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.afterturn</groupId>
|
|
<artifactId>easypoi-web</artifactId>
|
|
<version>3.0.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<version>4.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>4.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml-schemas</artifactId>
|
|
<version>4.0.0</version>
|
|
</dependency>
|
|
<!--jxls excel导入导出支持结束 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
<version>2.1.7</version>
|
|
</dependency>
|
|
<!--这里easyExcel文件大于5M会使用ehcache和文件缓存,这里ehcache版本被springBoot dependencyManager覆盖掉了手动定义的-->
|
|
<dependency>
|
|
<groupId>org.ehcache</groupId>
|
|
<artifactId>ehcache</artifactId>
|
|
<version>3.7.1</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.locationtech.proj4j/proj4j -->
|
|
<dependency>
|
|
<groupId>org.locationtech.proj4j</groupId>
|
|
<artifactId>proj4j</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- 添加GeoTools依赖 -->
|
|
<dependency>
|
|
<groupId>org.geotools</groupId>
|
|
<artifactId>gt-shapefile</artifactId>
|
|
<version>${geotools.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.geotools</groupId>
|
|
<artifactId>gt-swing</artifactId>
|
|
<version>${geotools.version}</version>
|
|
</dependency>
|
|
|
|
<!-- spring-test -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<version>5.3.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- 阿里云短信相关 -->
|
|
<dependency>
|
|
<groupId>com.aliyun</groupId>
|
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
|
<version>4.5.16</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.aliyun</groupId>
|
|
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
|
<version>2.1.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
<repositories>
|
|
|
|
<!-- GeoServer -->
|
|
<repository>
|
|
<id>GeoSolutions</id>
|
|
<url>http://maven.geo-solutions.it/</url>
|
|
</repository>
|
|
|
|
<!-- GeoTools -->
|
|
<repository>
|
|
<id>osgeo</id>
|
|
<name>OSGeo Release Repository</name>
|
|
<url>https://repo.osgeo.org/repository/release/</url>
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
<releases><enabled>true</enabled></releases>
|
|
</repository>
|
|
<repository>
|
|
<id>osgeo-snapshot</id>
|
|
<name>OSGeo Snapshot Repository</name>
|
|
<url>https://repo.osgeo.org/repository/snapshot/</url>
|
|
<snapshots><enabled>true</enabled></snapshots>
|
|
<releases><enabled>false</enabled></releases>
|
|
</repository>
|
|
|
|
<!-- Activiti -->
|
|
<repository>
|
|
<id>alfresco</id>
|
|
<name>Activiti Releases</name>
|
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-releases/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<!--当scope为system的时候默认不会最后打包-->
|
|
<includeSystemScope>true</includeSystemScope>
|
|
<excludes>
|
|
<exclude>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
</build>
|
|
</project>
|