<?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">
|
<!-- https://start.springboot.io/ -->
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.3.6.RELEASE</version>
|
<relativePath/>
|
</parent>
|
<!--打包成jar、war-->
|
<packaging>war</packaging>
|
|
<groupId>com</groupId>
|
<artifactId>yssh</artifactId>
|
<version>1.0.0</version>
|
<name>yssh</name>
|
<description>燕山石化溯源三维电子沙盘</description>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<java.version>1.8</java.version>
|
</properties>
|
|
<dependencies>
|
<!--log4j-->
|
<!--<dependency>
|
<groupId>log4j</groupId>
|
<artifactId>log4j</artifactId>
|
<version>1.2.17</version>
|
</dependency>-->
|
<!--logback-->
|
<!--<dependency>
|
<groupId>ch.qos.logback</groupId>
|
<artifactId>logback-core</artifactId>
|
<version>1.1.3</version>
|
</dependency>
|
<dependency>
|
<groupId>ch.qos.logback</groupId>
|
<artifactId>logback-access</artifactId>
|
<version>1.1.3</version>
|
</dependency>
|
<dependency>
|
<groupId>ch.qos.logback</groupId>
|
<artifactId>logback-classic</artifactId>
|
<version>1.1.3</version>
|
</dependency>-->
|
<!--spring-boot-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<!--排除内置tomcat容器,让外部容器运行spring-boot项目-->
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.apache.logging.log4j</groupId>
|
<artifactId>log4j-api</artifactId>
|
</exclusion><!---->
|
</exclusions>
|
</dependency>
|
<!--spring事务管理-->
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-tx</artifactId>
|
</dependency>
|
<!--tomcat-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
<!--jdbc-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
</dependency>
|
<!--thymeleaf-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
<version>2.2.2.RELEASE</version>
|
</dependency>
|
<!--lombok-->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<!--mybatis-plus-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.5.1</version>
|
</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-->
|
<!--aop-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>
|
<!--页面热部署-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-devtools</artifactId>
|
<optional>true</optional>
|
<scope>true</scope>
|
</dependency>
|
<!--fastjson-->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.47</version>
|
</dependency>
|
<!--整合druid数据源-->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid</artifactId>
|
<version>1.1.22</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>1.1.22</version>
|
</dependency>
|
<!--test-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<!--text-->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-text</artifactId>
|
<version>1.1</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>-->
|
<!--httpclient-->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
</dependency>
|
<!--websocket-->
|
<dependency>
|
<groupId>javax.websocket</groupId>
|
<artifactId>javax.websocket-api</artifactId>
|
<version>1.0</version>
|
</dependency>
|
<!--websocket-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
</dependency>
|
<!--hutool-->
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>5.7.20</version>
|
</dependency>
|
<dependency>
|
<groupId>net.java.dev.jna</groupId>
|
<artifactId>jna</artifactId>
|
<version>5.5.0</version>
|
</dependency>
|
<dependency>
|
<groupId>net.java.dev.jna</groupId>
|
<artifactId>jna-platform</artifactId>
|
<version>5.5.0</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>
|
<!--war:servlet-->
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>javax.servlet-api</artifactId>
|
<version>3.1.0</version>
|
<scope>provided</scope>
|
</dependency>
|
<!--fast-md5-->
|
<dependency>
|
<groupId>com.joyent.util</groupId>
|
<artifactId>fast-md5</artifactId>
|
<version>2.7.1</version>
|
</dependency>
|
<!--apache.poi-->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.16</version>
|
</dependency>
|
|
<!--mysql-->
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
</dependency>
|
<!--biyanwen-->
|
<dependency>
|
<groupId>com.github.biyanwen</groupId>
|
<artifactId>easycsv</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
<version>3.0.3</version>
|
</dependency>
|
<!--geotools依赖-->
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt-shapefile</artifactId>
|
<version>22.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt-main</artifactId>
|
<version>22.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt-epsg-hsql</artifactId>
|
<version>22.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt-geotiff</artifactId>
|
<version>22.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt-geojson</artifactId>
|
<version>22.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt-api</artifactId>
|
<version>20.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt-metadata</artifactId>
|
<version>22.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt-opengis</artifactId>
|
<version>22.0</version>
|
<scope>compile</scope>
|
</dependency>
|
<!--Caffeine缓存-->
|
<dependency>
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
<artifactId>caffeine</artifactId>
|
<version>2.9.3</version>
|
</dependency>
|
<!--easyexcel-->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>2.2.10</version>
|
</dependency>
|
</dependencies>
|
|
<profiles>
|
<profile>
|
<id>test</id>
|
<properties>
|
<activatedProperties>test</activatedProperties>
|
</properties>
|
</profile>
|
<profile>
|
<id>dev</id>
|
<properties>
|
<activatedProperties>dev</activatedProperties>
|
</properties>
|
<activation>
|
<activeByDefault>true</activeByDefault>
|
</activation>
|
</profile>
|
<profile>
|
<id>prod</id>
|
<properties>
|
<activatedProperties>prod</activatedProperties>
|
</properties>
|
</profile>
|
</profiles>
|
|
<build>
|
<finalName>yssh</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<!--<version>2.3.0.RELEASE</version>-->
|
<configuration>
|
<mainClass>com.yssh.Application</mainClass>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
<repositories>
|
<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>
|
<repository>
|
<id>public</id>
|
<name>aliyun nexus</name>
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
<releases>
|
<enabled>true</enabled>
|
</releases>
|
</repository>
|
</repositories>
|
</project>
|