2018-10-07 22:29:19 +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>
|
2018-12-06 15:08:39 +08:00
|
|
|
|
<version>3.1</version>
|
2018-10-07 22:29:19 +08:00
|
|
|
|
</parent>
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-12-20 23:20:04 +08:00
|
|
|
|
<packaging>war</packaging>
|
2018-10-07 22:29:19 +08:00
|
|
|
|
<artifactId>ruoyi-admin</artifactId>
|
|
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
|
web服务入口
|
|
|
|
|
|
</description>
|
2018-11-13 16:48:44 +08:00
|
|
|
|
|
2018-10-07 22:29:19 +08:00
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- spring-boot-devtools -->
|
2018-12-08 23:18:43 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
|
<optional>true</optional> <!-- 表示依赖不会传递 -->
|
|
|
|
|
|
</dependency>
|
2018-10-07 22:29:19 +08:00
|
|
|
|
<!-- swagger2-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
|
<version>${swagger.version}</version>
|
|
|
|
|
|
</dependency>
|
2018-10-07 23:10:09 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- swagger2-UI-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
|
<version>${swagger.version}</version>
|
|
|
|
|
|
</dependency>
|
2018-10-07 22:29:19 +08:00
|
|
|
|
|
2018-11-29 18:37:54 +08:00
|
|
|
|
<!-- 代码生成-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-generator</artifactId>
|
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
|
</dependency>
|
2018-12-06 21:38:21 +08:00
|
|
|
|
<!-- 考试系统-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-exam</artifactId>
|
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
|
</dependency>
|
2018-12-08 18:38:51 +08:00
|
|
|
|
<!-- 会员系统-->
|
2018-12-07 22:23:03 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2018-12-08 18:38:51 +08:00
|
|
|
|
<artifactId>ruoyi-vip</artifactId>
|
2018-12-07 22:23:03 +08:00
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
|
</dependency>
|
2018-12-08 23:18:43 +08:00
|
|
|
|
<!-- 培训系统-->
|
2018-12-20 11:50:22 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2018-12-20 21:21:12 +08:00
|
|
|
|
<artifactId>ruoyi-train</artifactId>
|
2018-12-20 11:50:22 +08:00
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
|
</dependency>
|
2018-12-20 21:21:12 +08:00
|
|
|
|
<!-- 测试生成的代码-->
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
|
|
|
<!--<groupId>com.ruoyi</groupId>-->
|
|
|
|
|
|
<!--<artifactId>tuoyi-test</artifactId>-->
|
|
|
|
|
|
<!--<version>${ruoyi.version}</version>-->
|
|
|
|
|
|
<!--</dependency>-->
|
2018-11-30 14:48:16 +08:00
|
|
|
|
<!-- 定时任务
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-quartz</artifactId>
|
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
|
</dependency>-->
|
2018-10-07 22:29:19 +08:00
|
|
|
|
</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>
|
2018-10-26 13:01:30 +08:00
|
|
|
|
<plugin>
|
2018-10-26 13:29:07 +08:00
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
|
<version>3.0.0</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
|
|
<warName>${artifactId}</warName>
|
|
|
|
|
|
</configuration>
|
2018-10-26 13:01:30 +08:00
|
|
|
|
</plugin>
|
2018-10-07 22:29:19 +08:00
|
|
|
|
</plugins>
|
2018-10-26 13:29:07 +08:00
|
|
|
|
<finalName>${artifactId}</finalName>
|
2018-10-07 22:29:19 +08:00
|
|
|
|
</build>
|
|
|
|
|
|
|
2018-10-07 14:16:47 +08:00
|
|
|
|
</project>
|