2020-05-24 20:40:55 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
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>
|
|
|
|
|
<artifactId>ruoyi-modules</artifactId>
|
2025-12-22 09:17:03 +08:00
|
|
|
<version>3.6.7</version>
|
2020-05-24 20:40:55 +08:00
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>ruoyi-modules-system</artifactId>
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
ruoyi-modules-system系统模块
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2021-04-21 16:31:21 +08:00
|
|
|
<!-- SpringCloud Alibaba Nacos -->
|
2020-05-24 20:40:55 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-04-21 16:31:21 +08:00
|
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
2020-05-24 20:40:55 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-04-21 16:31:21 +08:00
|
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
2020-05-24 20:40:55 +08:00
|
|
|
<dependency>
|
2020-06-10 11:31:13 +08:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
2020-05-24 20:40:55 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
2020-09-01 13:31:00 +08:00
|
|
|
<!-- SpringBoot Actuator -->
|
2020-05-24 20:40:55 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2020-09-01 13:31:00 +08:00
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
2020-05-24 20:40:55 +08:00
|
|
|
</dependency>
|
2024-08-30 11:26:57 +08:00
|
|
|
|
2020-05-24 20:40:55 +08:00
|
|
|
<!-- Mysql Connector -->
|
|
|
|
|
<dependency>
|
2023-07-06 20:01:30 +08:00
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2020-05-24 20:40:55 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
2020-12-21 16:32:00 +08:00
|
|
|
<!-- RuoYi Common DataSource -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-common-datasource</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- RuoYi Common DataScope -->
|
2020-05-24 20:40:55 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-common-datascope</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-11-25 18:22:57 +08:00
|
|
|
<!-- RuoYi Common Log -->
|
2020-05-24 20:40:55 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-common-log</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-11-25 18:22:57 +08:00
|
|
|
<!-- RuoYi Common Swagger -->
|
2020-05-24 20:40:55 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-common-swagger</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
2021-01-17 12:06:33 +08:00
|
|
|
<finalName>${project.artifactId}</finalName>
|
2020-05-24 20:40:55 +08:00
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|