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>
|
2023-07-07 08:30:21 +08:00
|
|
|
<version>3.6.3</version>
|
2020-05-24 20:40:55 +08:00
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>ruoyi-modules-job</artifactId>
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
ruoyi-modules-job定时任务
|
|
|
|
|
</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>
|
|
|
|
|
|
2021-02-28 21:33:50 +08:00
|
|
|
<!-- Swagger UI -->
|
2020-05-24 20:40:55 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
<version>${swagger.fox.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Quartz -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
|
|
<artifactId>quartz</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.mchange</groupId>
|
|
|
|
|
<artifactId>c3p0</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 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-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>
|