<?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>
|
<groupId>com.doumee</groupId>
|
<artifactId>parkbike</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
<packaging>pom</packaging>
|
|
<name>parkbike</name>
|
<description></description>
|
<modules>
|
<module>platform</module>
|
<module>web</module>
|
<module>services</module>
|
</modules>
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.2.5.RELEASE</version>
|
</parent>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<java.version>1.8</java.version>
|
<swagger.version>2.9.2</swagger.version>
|
<swagger.bootstrap-ui.version>1.9.6</swagger.bootstrap-ui.version>
|
<fastjson.version>1.2.70</fastjson.version>
|
<druid.version>1.2.0</druid.version>
|
<mybatis.plus.version>3.4.2</mybatis.plus.version>
|
<apache.shiro.version>1.9.1</apache.shiro.version>
|
<oshi.version>5.7.0</oshi.version>
|
<jna.version>5.7.0</jna.version>
|
<poi.version>5.0.0</poi.version>
|
<okhttp.version>3.14.2</okhttp.version>
|
|
<!-- jwtToken -->
|
<jjwt.version>0.9.1</jjwt.version>
|
<!-- hutool 工具相关-->
|
<hutool.version>5.5.8</hutool.version>
|
<!-- 微信小程序 -->
|
<weixin-java-miniapp.version>4.1.0</weixin-java-miniapp.version>
|
<!-- 微信支付 -->
|
<weixin-java-pay.version>4.1.0</weixin-java-pay.version>
|
</properties>
|
|
<dependencies>
|
<!-- Spring Boot -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<exclusions>
|
<exclusion>
|
<artifactId>log4j-to-slf4j</artifactId>
|
<groupId>org.apache.logging.log4j</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<!-- Shiro -->
|
<dependency>
|
<groupId>org.apache.shiro</groupId>
|
<artifactId>shiro-spring</artifactId>
|
<version>${apache.shiro.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.shiro</groupId>
|
<artifactId>shiro-core</artifactId>
|
<version>${apache.shiro.version}</version>
|
</dependency>
|
<!-- MyBatis plus -->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>${mybatis.plus.version}</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.github.yulichang/mybatis-plus-join -->
|
<dependency>
|
<groupId>com.github.yulichang</groupId>
|
<artifactId>mybatis-plus-join</artifactId>
|
<version>1.4.2.2</version>
|
</dependency>
|
|
<!-- MyBatis分页 -->
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
<version>1.3.0</version>
|
<!--使用spring boot2整合 pagehelper-spring-boot-starter必须排除一下依赖
|
因为pagehelper-spring-boot-starter也已经在pom依赖了mybatis与mybatis-spring
|
所以会与mybatis-plus-boot-starter中的mybatis与mybatis-spring发生冲突
|
-->
|
<exclusions>
|
<exclusion>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis-spring</artifactId>
|
</exclusion>
|
<!-- 解决jsqlparser 依赖版本冲突-->
|
<exclusion>
|
<artifactId>jsqlparser</artifactId>
|
<groupId>com.github.jsqlparser</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<!-- 连接池 -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid</artifactId>
|
<version>${druid.version}</version>
|
</dependency>
|
<!-- <dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<scope>runtime</scope>
|
</dependency>-->
|
<!-- 加载postgresql驱动 -->
|
<dependency>
|
<groupId>org.postgresql</groupId>
|
<artifactId>postgresql</artifactId>
|
<scope>runtime</scope>
|
</dependency>
|
<!-- 加载jdbc连接数据库 -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
</dependency>
|
|
<!-- swagger -->
|
<!-- <dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>${swagger.version}</version>
|
</dependency>-->
|
<!-- swagger-bootstrap-ui -->
|
<!-- <dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>swagger-bootstrap-ui</artifactId>
|
<version>${swagger.bootstrap-ui.version}</version>
|
</dependency>-->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-boot-starter</artifactId>
|
<version>3.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
<version>3.0.1</version>
|
</dependency>
|
<!-- lombok -->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
<!--google kaptcha-->
|
<dependency>
|
<groupId>com.github.penggle</groupId>
|
<artifactId>kaptcha</artifactId>
|
<version>2.3.2</version>
|
</dependency>
|
<!-- 工具包 -->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>${fastjson.version}</version>
|
</dependency>
|
<!-- Excel导入/导出依赖包 -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<!-- 获取系统信息依赖包 -->
|
<dependency>
|
<groupId>com.github.oshi</groupId>
|
<artifactId>oshi-core</artifactId>
|
<version>${oshi.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>net.java.dev.jna</groupId>
|
<artifactId>jna</artifactId>
|
<version>${jna.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>net.java.dev.jna</groupId>
|
<artifactId>jna-platform</artifactId>
|
<version>${jna.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.logging.log4j</groupId>
|
<artifactId>log4j-to-slf4j</artifactId>
|
<version>2.17.0</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>log4j-api</artifactId>
|
<groupId>org.apache.logging.log4j</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
|
<dependency>
|
<groupId>org.apache.logging.log4j</groupId>
|
<artifactId>log4j-api</artifactId>
|
<version>2.17.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.aliyun.oss</groupId>
|
<artifactId>aliyun-sdk-oss</artifactId>
|
<version>2.2.1</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-fileupload</groupId>
|
<artifactId>commons-fileupload</artifactId>
|
<version>1.3</version>
|
</dependency>
|
<dependency>
|
<groupId>com.squareup.okhttp3</groupId>
|
<artifactId>okhttp</artifactId>
|
<version>${okhttp.version}</version>
|
<scope>compile</scope>
|
</dependency>
|
<dependency>
|
<groupId>commons-httpclient</groupId>
|
<artifactId>commons-httpclient</artifactId>
|
<version>3.1</version>
|
</dependency>
|
|
<!-- 压缩包解压 -->
|
<dependency>
|
<groupId>com.github.junrar</groupId>
|
<artifactId>junrar</artifactId>
|
<version>7.4.1</version>
|
</dependency>
|
<dependency>
|
<groupId>net.lingala</groupId>
|
<artifactId>zip4j</artifactId>
|
<version>1.3.3</version>
|
</dependency>
|
<!--jwt-->
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt</artifactId>
|
<version>${jjwt.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-net</groupId>
|
<artifactId>commons-net</artifactId>
|
<version>3.8.0</version>
|
</dependency>
|
|
<!-- WeChat 小程序 -->
|
<dependency>
|
<groupId>com.github.binarywang</groupId>
|
<artifactId>weixin-java-miniapp</artifactId>
|
<version>${weixin-java-miniapp.version}</version>
|
</dependency>
|
<!-- WeChat 支付 -->
|
<dependency>
|
<groupId>com.github.binarywang</groupId>
|
<artifactId>weixin-java-pay</artifactId>
|
<version>${weixin-java-pay.version}</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<resources>
|
<resource>
|
<directory>src/main/resources</directory>
|
</resource>
|
</resources>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<mainClass>com.doumee.Application</mainClass>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|