mirror of
https://gitee.com/republicline/rax-remote-v2.git
synced 2025-08-24 06:14:56 +08:00
50 lines
1.6 KiB
XML
50 lines
1.6 KiB
XML
<?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.rax</groupId>
|
|
<artifactId>rax</artifactId>
|
|
<version>3.7.3</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>quartz</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<description>基于quartz后台定时任务模块</description>
|
|
|
|
<dependencies>
|
|
<!--日志处理-->
|
|
<dependency>
|
|
<groupId>com.rax</groupId>
|
|
<artifactId>common-log</artifactId>
|
|
</dependency>
|
|
<!--feign 处理-->
|
|
<dependency>
|
|
<groupId>com.rax</groupId>
|
|
<artifactId>common-feign</artifactId>
|
|
</dependency>
|
|
<!--mybatis-->
|
|
<dependency>
|
|
<groupId>com.rax</groupId>
|
|
<artifactId>common-mybatis</artifactId>
|
|
</dependency>
|
|
<!--swagger-->
|
|
<dependency>
|
|
<groupId>com.rax</groupId>
|
|
<artifactId>common-swagger</artifactId>
|
|
</dependency>
|
|
<!--spring security 、oauth、jwt依赖-->
|
|
<dependency>
|
|
<groupId>com.rax</groupId>
|
|
<artifactId>common-security</artifactId>
|
|
</dependency>
|
|
<!-- quartz 模块 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|