<?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>ruoyi</artifactId>
|
<groupId>com.ruoyi</groupId>
|
<version>3.8.6</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>ruoyi-system</artifactId>
|
|
<description>
|
system系统模块
|
</description>
|
|
<dependencies>
|
<dependency>
|
<groupId>com.qcloud</groupId>
|
<artifactId>cos_api</artifactId>
|
<version>5.6.227</version>
|
</dependency>
|
<!-- 通用工具-->
|
<dependency>
|
<groupId>com.ruoyi</groupId>
|
<artifactId>ruoyi-common</artifactId>
|
<!-- <exclusions>-->
|
<!-- <exclusion>-->
|
<!-- <groupId>com.github.pagehelper</groupId>-->
|
<!-- <artifactId>pagehelper-spring-boot-starter</artifactId>-->
|
<!-- </exclusion>-->
|
<!-- </exclusions>-->
|
</dependency>
|
<dependency>
|
<groupId>com.ruoyi</groupId>
|
<artifactId>ruoyi-quartz</artifactId>
|
</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>
|
|
<!--mybatis-plus-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.5.2</version>
|
</dependency>
|
<!--集成EasyExcel -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>2.1.6</version>
|
</dependency>
|
|
|
<!-- <dependency>-->
|
<!-- <groupId>org.apache.httpcomponents</groupId>-->
|
<!-- <artifactId>httpcore</artifactId>-->
|
<!-- <version>4.3.2</version>-->
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
<!-- <groupId>org.springframework</groupId>-->
|
<!-- <artifactId>spring-test</artifactId>-->
|
<!-- <version>5.1.3.RELEASE</version>-->
|
<!-- </dependency>-->
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.tomcat.embed</groupId>
|
<artifactId>tomcat-embed-core</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
</dependency>
|
</dependencies>
|
|
</project>
|