2023-07-05 11:40:25 +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>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2023-08-15 22:24:31 +08:00
|
|
|
|
<artifactId>ruoyi-flex</artifactId>
|
2023-07-08 18:57:52 +08:00
|
|
|
|
<version>${revision}</version>
|
2023-07-05 11:40:25 +08:00
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<packaging>jar</packaging>
|
2023-08-15 22:24:31 +08:00
|
|
|
|
|
2023-07-05 11:40:25 +08:00
|
|
|
|
<artifactId>ruoyi-admin</artifactId>
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
web服务入口
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- 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>
|
2023-07-13 11:53:30 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-08-15 22:24:31 +08:00
|
|
|
|
<!-- PostgreSql -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-07-13 11:53:30 +08:00
|
|
|
|
<!-- mybatis-flex -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.mybatis-flex</groupId>
|
|
|
|
|
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
|
2023-07-05 11:40:25 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-08-15 22:24:31 +08:00
|
|
|
|
<!-- system模块-->
|
2023-07-05 11:40:25 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2023-08-15 22:24:31 +08:00
|
|
|
|
<artifactId>ruoyi-system</artifactId>
|
2023-07-05 11:40:25 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 定时任务-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-quartz</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 代码生成-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-generator</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-07-09 16:43:54 +08:00
|
|
|
|
<!-- demo模块 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-demo</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-08-17 11:18:22 +08:00
|
|
|
|
<!-- spring-boot-admin 监控客户端 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-07-05 11:40:25 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2023-08-15 22:24:31 +08:00
|
|
|
|
<version>${spring-boot.version}</version>
|
2023-07-05 11:40:25 +08:00
|
|
|
|
<configuration>
|
2023-08-15 22:24:31 +08:00
|
|
|
|
<!-- <fork>true</fork> <!– 如果没有该配置,devtools不会生效 –>-->
|
2023-07-05 11:40:25 +08:00
|
|
|
|
</configuration>
|
2023-08-15 22:24:31 +08:00
|
|
|
|
<!-- <executions>-->
|
|
|
|
|
<!-- <execution>-->
|
|
|
|
|
<!-- <goals>-->
|
|
|
|
|
<!-- <goal>repackage</goal>-->
|
|
|
|
|
<!-- </goals>-->
|
|
|
|
|
<!-- </execution>-->
|
|
|
|
|
<!-- </executions>-->
|
2023-07-05 11:40:25 +08:00
|
|
|
|
</plugin>
|
2023-08-15 22:24:31 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<version>${maven-jar-plugin.version}</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
<version>${maven-war-plugin.version}</version>
|
2023-07-05 11:40:25 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
|
<warName>${project.artifactId}</warName>
|
2023-08-15 22:24:31 +08:00
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2023-07-05 11:40:25 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
|
</build>
|
|
|
|
|
|
2023-08-15 22:24:31 +08:00
|
|
|
|
</project>
|