<?xml version="1.0" encoding="UTF-8"?>
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<parent>
|
<artifactId>eyes</artifactId>
|
<groupId>com</groupId>
|
<version>0.0.1-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>common</artifactId>
|
|
<properties>
|
<maven.compiler.source>8</maven.compiler.source>
|
<maven.compiler.target>8</maven.compiler.target>
|
<hutool.version>5.3.8</hutool.version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>com.alipay.sdk</groupId>
|
<artifactId>alipay-sdk-java</artifactId>
|
<version>4.8.10.ALL</version>
|
</dependency>
|
<!-- hutool工具类-->
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-core</artifactId>
|
<version>${hutool.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-crypto</artifactId>
|
<version>${hutool.version}</version>
|
</dependency>
|
<!--通过ip获取地址-->
|
<dependency>
|
<groupId>com.maxmind.geoip2</groupId>
|
<artifactId>geoip2</artifactId>
|
<version>2.6.0</version>
|
</dependency>
|
<!--aop实现日志记录-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>
|
<!--oss-->
|
<dependency>
|
<groupId>com.aliyun.oss</groupId>
|
<artifactId>aliyun-sdk-oss</artifactId>
|
<version>3.10.2</version>
|
</dependency>
|
<!-- 阿里云短信 -->
|
<dependency>
|
<groupId>com.aliyun</groupId>
|
<artifactId>dysmsapi20170525</artifactId>
|
<version>2.0.10</version>
|
</dependency>
|
<!--spirngboot集成rabbitmq-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-jdk15on</artifactId>
|
<version>1.47</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-webmvc</artifactId>
|
<optional>true</optional>
|
</dependency>
|
|
<!-- 保留swagger-ui默认文档 -->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>3.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
<version>3.0.3</version>
|
</dependency>
|
<!-- swagger end-->
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>javax.servlet-api</artifactId>
|
<optional>true</optional>
|
</dependency>
|
|
<!-- springboot end -->
|
|
<!-- mybatis-plus start-->
|
<!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.4.3.4</version>
|
</dependency>
|
<!-- jdbc 连接包 -->
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>8.0.27</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
|
<dependency>
|
<groupId>commons-httpclient</groupId>
|
<artifactId>commons-httpclient</artifactId>
|
<version>3.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpcore</artifactId>
|
<version>4.4.14</version>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.13</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
<optional>true</optional>
|
</dependency>
|
|
<dependency>
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
<version>2.12.5</version>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
|
<!-- jwt -->
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt</artifactId>
|
<version>0.9.1</version>
|
</dependency>
|
|
<!--security-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-security</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.hibernate.validator</groupId>
|
<artifactId>hibernate-validator</artifactId>
|
<version>6.2.0.Final</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
<artifactId>caffeine</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.78</version>
|
</dependency>
|
|
<dependency>
|
<groupId>cn.afterturn</groupId>
|
<artifactId>easypoi-spring-boot-starter</artifactId>
|
<version>4.0.0</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>guava</artifactId>
|
<groupId>com.google.guava</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
<!--微信v3支付-->
|
<dependency>
|
<groupId>com.github.wechatpay-apiv3</groupId>
|
<artifactId>wechatpay-java</artifactId>
|
<version>0.2.12</version>
|
</dependency>
|
<!--支付宝v3支付-->
|
<dependency>
|
<groupId>com.alipay.sdk</groupId>
|
<artifactId>alipay-sdk-java-v3</artifactId>
|
<version>2.9.0.ALL</version>
|
</dependency>
|
|
<!--华为云服务-->
|
<!--<dependency>
|
<groupId>com.huaweicloud.sdk</groupId>
|
<artifactId>huaweicloud-sdk-msgsms</artifactId>
|
<version>3.1.91</version>
|
</dependency>-->
|
</dependencies>
|
|
</project>
|