RuoYi/ruoyi-common/pom.xml

106 lines
3.2 KiB
XML
Raw Normal View History

2018-10-07 06:16:47 +00:00
<?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>
2020-08-24 00:41:53 +00:00
<version>4.4.0</version>
2018-10-07 06:16:47 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
2020-07-16 08:19:28 +00:00
2018-10-07 06:16:47 +00:00
<artifactId>ruoyi-common</artifactId>
2020-07-16 08:19:28 +00:00
<description>
common通用工具
</description>
2018-10-07 06:16:47 +00:00
<dependencies>
2020-07-16 08:19:28 +00:00
<!-- Spring框架基本的核心工具 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<!-- SpringWeb模块 -->
<dependency>
2019-03-08 06:44:38 +00:00
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
2020-07-16 08:19:28 +00:00
<!--Shiro核心框架 -->
2019-07-19 01:53:45 +00:00
<dependency>
2020-07-16 08:19:28 +00:00
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
</dependency>
<!-- Shiro使用EhCache缓存框架 -->
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-ehcache</artifactId>
</dependency>
2020-07-16 08:19:28 +00:00
<!-- pagehelper 分页插件 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
</dependency>
<!-- 自定义验证注解 -->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
2019-07-19 01:53:45 +00:00
</dependency>
2020-07-16 08:19:28 +00:00
2018-10-07 06:16:47 +00:00
<!--常用工具类 -->
<dependency>
2020-07-16 08:19:28 +00:00
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<!-- JSON工具类 -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- 阿里JSON解析器 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<!-- io常用工具类 -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<!-- 文件上传工具类 -->
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
</dependency>
<!-- excel工具 -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
</dependency>
<!-- yml解析器 -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<!-- servlet包 -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
2018-10-07 06:16:47 +00:00
</dependencies>
2020-07-16 08:19:28 +00:00
2018-10-07 06:16:47 +00:00
</project>