You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
180 lines
6.4 KiB
180 lines
6.4 KiB
|
1 month ago
|
<?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">
|
||
|
|
<parent>
|
||
|
|
<artifactId>hiver-microerp-back</artifactId>
|
||
|
|
<groupId>cc.hiver</groupId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<name>Hiver核心库</name>
|
||
|
|
<artifactId>hiver-core</artifactId>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- Web -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Validation -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Security -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- AOP -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Elasticsearch -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- JPA -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- MybatisPlus -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Redis-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Redission -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.redisson</groupId>
|
||
|
|
<artifactId>redisson-spring-boot-starter</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Websocket -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Thymeleaf -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Email -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- JWT -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
|
<artifactId>jjwt</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- knife4j Swagger增强API文档 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.xiaoymin</groupId>
|
||
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Gson -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.code.gson</groupId>
|
||
|
|
<artifactId>gson</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Hutool工具包 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.hutool</groupId>
|
||
|
|
<artifactId>hutool-all</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Lombok -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Jasypt加密 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
||
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- 阿里云OSS 含核心包 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.aliyun.oss</groupId>
|
||
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- 腾讯云短信 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.tencentcloudapi</groupId>
|
||
|
|
<artifactId>tencentcloud-sdk-java</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!--支付宝依赖-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alipay.sdk</groupId>
|
||
|
|
<artifactId>alipay-sdk-java</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!--easypoi导入导出-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.afterturn</groupId>
|
||
|
|
<artifactId>easypoi-base</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- license -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>de.schlichtherle.truelicense</groupId>
|
||
|
|
<artifactId>truelicense-core</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 测试框架TestNG + 测试报告 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.aventstack</groupId>
|
||
|
|
<artifactId>extentreports-testng-adapter</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- 自动化测试 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
||
|
|
<artifactId>selenium-java</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.jpush.api</groupId>
|
||
|
|
<artifactId>jpush-client</artifactId>
|
||
|
|
<version>3.2.17</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.jpush.api</groupId>
|
||
|
|
<artifactId>jiguang-common</artifactId>
|
||
|
|
<version>1.1.12</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 阿里依赖 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.aliyun</groupId>
|
||
|
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
||
|
|
<version>4.5.3</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- 由于SpringBoot自带的jackson的API不如fastjson好用,所以又引入了依赖 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
<version>1.2.62</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.aliyun</groupId>
|
||
|
|
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
||
|
|
<version>1.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.belerweb</groupId>
|
||
|
|
<artifactId>pinyin4j</artifactId>
|
||
|
|
<version>2.5.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.binarywang</groupId>
|
||
|
|
<artifactId>weixin-java-mp</artifactId>
|
||
|
|
<version>4.6.0</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|