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