2019-01-17 18:22:27 +08: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>
|
|
|
|
|
<version>3.1</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>ruoyi-cms</artifactId>
|
|
|
|
|
|
2019-01-17 21:53:38 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<!-- spring-boot-devtools -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
<optional>false</optional> <!-- 表示依赖不会传递 -->
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-framework</artifactId>
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
</dependency>
|
2019-01-20 21:28:10 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-train</artifactId>
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-exam</artifactId>
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
</dependency>
|
2019-01-25 14:05:28 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-vip</artifactId>
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-weixin</artifactId>
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
</dependency>
|
2019-01-17 21:53:38 +08:00
|
|
|
</dependencies>
|
2019-01-17 18:22:27 +08:00
|
|
|
</project>
|