mirror of https://gitee.com/y_project/RuoYi.git
kuangbx
6 years ago
4 changed files with 190 additions and 189 deletions
@ -1,76 +1,76 @@
|
||||
<?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.0</version> |
||||
</parent> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
|
||||
<artifactId>ruoyi-admin</artifactId> |
||||
|
||||
<description> |
||||
web服务入口 |
||||
</description> |
||||
|
||||
<properties> |
||||
<pagehelper.boot.version>1.2.5</pagehelper.boot.version> |
||||
<swagger.version>2.7.0</swagger.version> |
||||
</properties> |
||||
|
||||
<dependencies> |
||||
|
||||
<!-- spring-boot-devtools --> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-devtools</artifactId> |
||||
<optional>true</optional> <!-- 表示依赖不会传递 --> |
||||
</dependency> |
||||
|
||||
<!-- pagehelper 分页插件 --> |
||||
<dependency> |
||||
<groupId>com.github.pagehelper</groupId> |
||||
<artifactId>pagehelper-spring-boot-starter</artifactId> |
||||
<version>${pagehelper.boot.version}</version> |
||||
</dependency> |
||||
|
||||
<!-- swagger2--> |
||||
<dependency> |
||||
<groupId>io.springfox</groupId> |
||||
<artifactId>springfox-swagger2</artifactId> |
||||
<version>${swagger.version}</version> |
||||
</dependency> |
||||
|
||||
<!-- 核心模块--> |
||||
<dependency> |
||||
<groupId>com.ruoyi</groupId> |
||||
<artifactId>ruoyi-framework</artifactId> |
||||
<version>${ruoyi.version}</version> |
||||
|
||||
</dependency> |
||||
|
||||
</dependencies> |
||||
|
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-maven-plugin</artifactId> |
||||
<configuration> |
||||
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 --> |
||||
</configuration> |
||||
<executions> |
||||
<execution> |
||||
<goals> |
||||
<goal>repackage</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
</plugins> |
||||
<finalName>ruoyi-${ruoyi.version}</finalName> |
||||
</build> |
||||
|
||||
<?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.0</version> |
||||
</parent> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
|
||||
<artifactId>ruoyi-admin</artifactId> |
||||
|
||||
<description> |
||||
web服务入口 |
||||
</description> |
||||
|
||||
<properties> |
||||
<pagehelper.boot.version>1.2.5</pagehelper.boot.version> |
||||
<swagger.version>2.7.0</swagger.version> |
||||
</properties> |
||||
|
||||
<dependencies> |
||||
|
||||
<!-- spring-boot-devtools --> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-devtools</artifactId> |
||||
<optional>true</optional> <!-- 表示依赖不会传递 --> |
||||
</dependency> |
||||
|
||||
<!-- pagehelper 分页插件 --> |
||||
<dependency> |
||||
<groupId>com.github.pagehelper</groupId> |
||||
<artifactId>pagehelper-spring-boot-starter</artifactId> |
||||
<version>${pagehelper.boot.version}</version> |
||||
</dependency> |
||||
|
||||
<!-- swagger2--> |
||||
<dependency> |
||||
<groupId>io.springfox</groupId> |
||||
<artifactId>springfox-swagger2</artifactId> |
||||
<version>${swagger.version}</version> |
||||
</dependency> |
||||
|
||||
<!-- 核心模块--> |
||||
<dependency> |
||||
<groupId>com.ruoyi</groupId> |
||||
<artifactId>ruoyi-framework</artifactId> |
||||
<version>${ruoyi.version}</version> |
||||
|
||||
</dependency> |
||||
|
||||
</dependencies> |
||||
|
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-maven-plugin</artifactId> |
||||
<configuration> |
||||
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 --> |
||||
</configuration> |
||||
<executions> |
||||
<execution> |
||||
<goals> |
||||
<goal>repackage</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
</plugins> |
||||
<finalName>ruoyi-${ruoyi.version}</finalName> |
||||
</build> |
||||
|
||||
</project> |
@ -1,114 +1,114 @@
|
||||
<?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.0</version> |
||||
</parent> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
|
||||
<artifactId>ruoyi-framework</artifactId> |
||||
|
||||
<description> |
||||
framework框架核心 |
||||
</description> |
||||
|
||||
<dependencies> |
||||
|
||||
<!-- SpringBoot Web容器 --> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-web</artifactId> |
||||
</dependency> |
||||
|
||||
<!-- SpringBoot 拦截器 --> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-aop</artifactId> |
||||
</dependency> |
||||
|
||||
<!--阿里数据库连接池 --> |
||||
<dependency> |
||||
<groupId>com.alibaba</groupId> |
||||
<artifactId>druid-spring-boot-starter</artifactId> |
||||
<version>${druid.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> |
||||
|
||||
<!-- SpringBoot集成thymeleaf模板 --> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-thymeleaf</artifactId> |
||||
</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> |
||||
|
||||
<!-- 解析客户端操作系统、浏览器等 --> |
||||
<dependency> |
||||
<groupId>eu.bitwalker</groupId> |
||||
<artifactId>UserAgentUtils</artifactId> |
||||
<version>${bitwalker.version}</version> |
||||
</dependency> |
||||
|
||||
<!-- 系统模块--> |
||||
<dependency> |
||||
<groupId>com.ruoyi</groupId> |
||||
<artifactId>ruoyi-system</artifactId> |
||||
<version>${ruoyi.version}</version> |
||||
</dependency> |
||||
<!-- 定时任务--> |
||||
<dependency> |
||||
<groupId>com.ruoyi</groupId> |
||||
<artifactId>ruoyi-quartz</artifactId> |
||||
<version>${ruoyi.version}</version> |
||||
</dependency> |
||||
<!-- 代码生成--> |
||||
<dependency> |
||||
<groupId>com.ruoyi</groupId> |
||||
<artifactId>ruoyi-generator</artifactId> |
||||
<version>${ruoyi.version}</version> |
||||
</dependency> |
||||
|
||||
</dependencies> |
||||
|
||||
<?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.0</version> |
||||
</parent> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
|
||||
<artifactId>ruoyi-framework</artifactId> |
||||
|
||||
<description> |
||||
framework框架核心 |
||||
</description> |
||||
|
||||
<dependencies> |
||||
|
||||
<!-- SpringBoot Web容器 --> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-web</artifactId> |
||||
</dependency> |
||||
|
||||
<!-- SpringBoot 拦截器 --> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-aop</artifactId> |
||||
</dependency> |
||||
|
||||
<!--阿里数据库连接池 --> |
||||
<dependency> |
||||
<groupId>com.alibaba</groupId> |
||||
<artifactId>druid-spring-boot-starter</artifactId> |
||||
<version>${druid.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> |
||||
|
||||
<!-- SpringBoot集成thymeleaf模板 --> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-thymeleaf</artifactId> |
||||
</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> |
||||
|
||||
<!-- 解析客户端操作系统、浏览器等 --> |
||||
<dependency> |
||||
<groupId>eu.bitwalker</groupId> |
||||
<artifactId>UserAgentUtils</artifactId> |
||||
<version>${bitwalker.version}</version> |
||||
</dependency> |
||||
|
||||
<!-- 系统模块--> |
||||
<dependency> |
||||
<groupId>com.ruoyi</groupId> |
||||
<artifactId>ruoyi-system</artifactId> |
||||
<version>${ruoyi.version}</version> |
||||
</dependency> |
||||
<!-- 定时任务--> |
||||
<dependency> |
||||
<groupId>com.ruoyi</groupId> |
||||
<artifactId>ruoyi-quartz</artifactId> |
||||
<version>${ruoyi.version}</version> |
||||
</dependency> |
||||
<!-- 代码生成--> |
||||
<dependency> |
||||
<groupId>com.ruoyi</groupId> |
||||
<artifactId>ruoyi-generator</artifactId> |
||||
<version>${ruoyi.version}</version> |
||||
</dependency> |
||||
|
||||
</dependencies> |
||||
|
||||
</project> |
Loading…
Reference in new issue