|
@@ -1,261 +1,82 @@
|
|
|
<?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">
|
|
|
+<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.ruoyi</groupId>
|
|
|
- <artifactId>RuoYi</artifactId>
|
|
|
- <version>3.0.0</version>
|
|
|
- <packaging>jar</packaging>
|
|
|
-
|
|
|
- <name>RuoYi</name>
|
|
|
- <description>若依管理系统</description>
|
|
|
-
|
|
|
- <parent>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>2.0.5.RELEASE</version>
|
|
|
- <relativePath />
|
|
|
- </parent>
|
|
|
-
|
|
|
- <properties>
|
|
|
+
|
|
|
+ <groupId>com.ruoyi</groupId>
|
|
|
+ <artifactId>ruoyi</artifactId>
|
|
|
+ <version>3.0</version>
|
|
|
+
|
|
|
+ <name>ruoyi</name>
|
|
|
+ <url>http://www.ruoyi.vip</url>
|
|
|
+ <description>若依管理系统</description>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <ruoyi.version>3.0</ruoyi.version>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
<java.version>1.8</java.version>
|
|
|
<shiro.version>1.4.0</shiro.version>
|
|
|
<thymeleaf.extras.shiro.version>2.0.0</thymeleaf.extras.shiro.version>
|
|
|
- <mybatis.spring.boot.starter.version>1.3.2</mybatis.spring.boot.starter.version>
|
|
|
- <pagehelper.spring.boot.starter.version>1.2.5</pagehelper.spring.boot.starter.version>
|
|
|
- <fastjson.version>1.2.47</fastjson.version>
|
|
|
+ <mybatis.boot.version>1.3.2</mybatis.boot.version>
|
|
|
<druid.version>1.1.10</druid.version>
|
|
|
- <commons.io.version>2.5</commons.io.version>
|
|
|
- <commons.fileupload.version>1.3.3</commons.fileupload.version>
|
|
|
<bitwalker.version>1.19</bitwalker.version>
|
|
|
- <lombok.version>1.16.18</lombok.version>
|
|
|
- <velocity.version>1.7</velocity.version>
|
|
|
<kaptcha.version>2.3.2</kaptcha.version>
|
|
|
<swagger.version>2.7.0</swagger.version>
|
|
|
- <jsoup.version>1.11.3</jsoup.version>
|
|
|
- <poi.version>3.17</poi.version>
|
|
|
</properties>
|
|
|
+
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
+ <version>2.0.5.RELEASE</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+ <modules>
|
|
|
+ <module>ruoyi-admin</module>
|
|
|
+ <module>ruoyi-framework</module>
|
|
|
+ <module>ruoyi-system</module>
|
|
|
+ <module>ruoyi-quartz</module>
|
|
|
+ <module>ruoyi-generator</module>
|
|
|
+ <module>ruoyi-common</module>
|
|
|
+ </modules>
|
|
|
+ <packaging>pom</packaging>
|
|
|
|
|
|
- <dependencies>
|
|
|
-
|
|
|
- <!-- SpringBoot 核心包 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter</artifactId>
|
|
|
- <!--
|
|
|
- <exclusions>
|
|
|
- <exclusion>
|
|
|
- <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- </exclusion>
|
|
|
- </exclusions>
|
|
|
- -->
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- SpringBoot 测试 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- SpringBoot 拦截器 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- SpringBoot Web容器 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- SpringBoot集成thymeleaf模板 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- spring-boot-devtools -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-devtools</artifactId>
|
|
|
- <optional>true</optional> <!-- 表示依赖不会传递 -->
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- Mysql驱动包 -->
|
|
|
- <dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- SpringBoot集成mybatis框架 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.mybatis.spring.boot</groupId>
|
|
|
- <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
- <version>${mybatis.spring.boot.starter.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- pagehelper 分页插件 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.pagehelper</groupId>
|
|
|
- <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
- <version>${pagehelper.spring.boot.starter.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!--阿里数据库连接池 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
- <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
- <version>${druid.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!--常用工具类 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
- <artifactId>commons-lang3</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!--io常用工具类 -->
|
|
|
- <dependency>
|
|
|
- <groupId>commons-io</groupId>
|
|
|
- <artifactId>commons-io</artifactId>
|
|
|
- <version>${commons.io.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!--文件上传工具类 -->
|
|
|
- <dependency>
|
|
|
- <groupId>commons-fileupload</groupId>
|
|
|
- <artifactId>commons-fileupload</artifactId>
|
|
|
- <version>${commons.fileupload.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!--Shiro核心框架 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.shiro</groupId>
|
|
|
- <artifactId>shiro-core</artifactId>
|
|
|
- <version>${shiro.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- Shiro使用Srping框架 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.shiro</groupId>
|
|
|
- <artifactId>shiro-spring</artifactId>
|
|
|
- <version>${shiro.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- Shiro使用EhCache缓存框架 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.shiro</groupId>
|
|
|
- <artifactId>shiro-ehcache</artifactId>
|
|
|
- <version>${shiro.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- thymeleaf模板引擎和shiro框架的整合 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.theborakompanioni</groupId>
|
|
|
- <artifactId>thymeleaf-extras-shiro</artifactId>
|
|
|
- <version>${thymeleaf.extras.shiro.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- 阿里JSON解析器 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
- <artifactId>fastjson</artifactId>
|
|
|
- <version>${fastjson.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- 解析客户端操作系统、浏览器等 -->
|
|
|
- <dependency>
|
|
|
- <groupId>eu.bitwalker</groupId>
|
|
|
- <artifactId>UserAgentUtils</artifactId>
|
|
|
- <version>${bitwalker.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!--Spring框架基本的核心工具-->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-context-support</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- 定时任务 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.quartz-scheduler</groupId>
|
|
|
- <artifactId>quartz</artifactId>
|
|
|
- <exclusions>
|
|
|
- <exclusion>
|
|
|
- <groupId>com.mchange</groupId>
|
|
|
- <artifactId>c3p0</artifactId>
|
|
|
- </exclusion>
|
|
|
- </exclusions>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!--velocity代码生成使用模板 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.velocity</groupId>
|
|
|
- <artifactId>velocity</artifactId>
|
|
|
- <version>${velocity.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!--验证码 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.penggle</groupId>
|
|
|
- <artifactId>kaptcha</artifactId>
|
|
|
- <version>${kaptcha.version}</version>
|
|
|
- <exclusions>
|
|
|
- <exclusion>
|
|
|
- <artifactId>javax.servlet-api</artifactId>
|
|
|
- <groupId>javax.servlet</groupId>
|
|
|
- </exclusion>
|
|
|
- </exclusions>
|
|
|
- </dependency>
|
|
|
|
|
|
- <!-- swagger2-->
|
|
|
- <dependency>
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
- <artifactId>springfox-swagger2</artifactId>
|
|
|
- <version>${swagger.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- swagger2-UI-->
|
|
|
- <dependency>
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
- <artifactId>springfox-swagger-ui</artifactId>
|
|
|
- <version>${swagger.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- HTML解析器 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.jsoup</groupId>
|
|
|
- <artifactId>jsoup</artifactId>
|
|
|
- <version>${jsoup.version}</version>
|
|
|
+ <dependencies>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
- <!-- excel工具 -->
|
|
|
+ <!-- 日志工具类 -->
|
|
|
<dependency>
|
|
|
- <groupId>org.apache.poi</groupId>
|
|
|
- <artifactId>poi-ooxml</artifactId>
|
|
|
- <version>${poi.version}</version>
|
|
|
- </dependency>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ </dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
- <finalName>${project.artifactId}</finalName>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <source>${java.version}</source>
|
|
|
+ <target>${java.version}</target>
|
|
|
+ <encoding>${project.build.sourceEncoding}</encoding>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
|
|
|
<repositories>
|
|
|
<repository>
|