|
@@ -0,0 +1,235 @@
|
|
|
+<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+
|
|
|
+ <!-- museum parent-->
|
|
|
+ <groupId>com.gis</groupId>
|
|
|
+ <artifactId>mp_to_age</artifactId>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+ <version>1.0.0</version>
|
|
|
+
|
|
|
+ <parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>2.3.4.RELEASE</version>
|
|
|
+ <relativePath/> <!-- lookup parent from repository -->
|
|
|
+ </parent>
|
|
|
+
|
|
|
+ <modules>
|
|
|
+ <module>gis_common</module>
|
|
|
+ <module>gis_web</module>
|
|
|
+ <module>gis_domain</module>
|
|
|
+ <module>gis_service</module>
|
|
|
+ <module>gis_mapper</module>
|
|
|
+ <module>gis_application</module>
|
|
|
+ </modules>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
+ <java.version>1.8</java.version>
|
|
|
+ <spring.boot.version>2.1.0.RELEASE</spring.boot.version>
|
|
|
+ <gis.version>1.0.0</gis.version>
|
|
|
+ <druid.version>1.1.14</druid.version>
|
|
|
+ <hutool.version>5.3.3</hutool.version>
|
|
|
+ <httpclient.version>4.5.12</httpclient.version>
|
|
|
+ <lombok.version>1.18.2</lombok.version>
|
|
|
+ <fastjson.version>1.2.75</fastjson.version>
|
|
|
+ <lang3.version>3.7</lang3.version>
|
|
|
+ <knife4j.version>2.0.2</knife4j.version>
|
|
|
+ <mysql.version>8.0.15</mysql.version>
|
|
|
+ <shiro.version>1.4.0</shiro.version>
|
|
|
+ <jwt.version>3.2.0</jwt.version>
|
|
|
+ <jjwt.version>0.6.0</jjwt.version>
|
|
|
+ <aliyun.core.version>4.0.3</aliyun.core.version>
|
|
|
+ <aliyun.dysmsapi.version>1.1.0</aliyun.dysmsapi.version>
|
|
|
+ <aliyun.oss.version>2.5.0</aliyun.oss.version>
|
|
|
+ <tk.mybatis.version>2.0.2</tk.mybatis.version>
|
|
|
+ <tk.mapper.version>4.0.3</tk.mapper.version>
|
|
|
+ <pagehelper.version>1.2.5</pagehelper.version>
|
|
|
+
|
|
|
+ </properties>
|
|
|
+
|
|
|
+
|
|
|
+ <!--dependencyManagement用于管理依赖版本号, 必须写版本号,不然依赖不上-->
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <!--模块版本管理-->
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.gis</groupId>
|
|
|
+ <artifactId>gis_application</artifactId>
|
|
|
+ <version>${gis.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.gis</groupId>
|
|
|
+ <artifactId>gis_common</artifactId>
|
|
|
+ <version>${gis.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.gis</groupId>
|
|
|
+ <artifactId>gis_domain</artifactId>
|
|
|
+ <version>${gis.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.gis</groupId>
|
|
|
+ <artifactId>gis_service</artifactId>
|
|
|
+ <version>${gis.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.gis</groupId>
|
|
|
+ <artifactId>gis_mapper</artifactId>
|
|
|
+ <version>${gis.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.gis</groupId>
|
|
|
+ <artifactId>gis_web</artifactId>
|
|
|
+ <version>${gis.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- springboot -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
+ <version>${spring.boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <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-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ <version>${spring.boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--springboot中的redis依赖-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
+ <version>${spring.boot.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- lombok -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>${lombok.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- fastjson -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--阿里数据库连接池 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
+ <version>${druid.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- mysql -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>${mysql.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 工具类 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
+ <version>${hutool.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- StringUtils -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
+ <version>${lang3.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- knife4j aip 包-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.xiaoymin</groupId>
|
|
|
+ <artifactId>knife4j-spring-boot-starter</artifactId>
|
|
|
+ <version>${knife4j.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- shiro -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
+ <artifactId>shiro-spring</artifactId>
|
|
|
+ <version>${shiro.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- jwt -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.auth0</groupId>
|
|
|
+ <artifactId>java-jwt</artifactId>
|
|
|
+ <version>${jwt.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
+ <artifactId>jjwt</artifactId>
|
|
|
+ <version>${jjwt.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!--tk.mybatis 依赖-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>tk.mybatis</groupId>
|
|
|
+ <artifactId>mapper-spring-boot-starter</artifactId>
|
|
|
+ <version>${tk.mybatis.version}</version>
|
|
|
+ <!-- tk.mybatis 跟springboot jap 包冲突-->
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>javax.persistence</groupId>
|
|
|
+ <artifactId>persistence-api</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!--分页插件-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
+ <version>${pagehelper.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- httpclient -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
+ <artifactId>httpclient</artifactId>
|
|
|
+ <version>${httpclient.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+
|
|
|
+</project>
|