|
@@ -0,0 +1,67 @@
|
|
|
|
|
+<?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>
|
|
|
|
|
+ <artifactId>tr-modules</artifactId>
|
|
|
|
|
+ <groupId>cn.tr</groupId>
|
|
|
|
|
+ <version>${revision}</version>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
+ <version>${revision}</version>
|
|
|
|
|
+
|
|
|
|
|
+ <artifactId>tr-module-quartz</artifactId>
|
|
|
|
|
+
|
|
|
|
|
+ <description>任务调度模块</description>
|
|
|
|
|
+
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.tr</groupId>
|
|
|
|
|
+ <artifactId>tr-framework</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.tr</groupId>
|
|
|
|
|
+ <artifactId>tr-spring-boot-starter-plugin-doc</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.tr</groupId>
|
|
|
|
|
+ <artifactId>tr-spring-boot-starter-plugin-web</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.tr</groupId>
|
|
|
|
|
+ <artifactId>tr-spring-boot-starter-plugin-mybatis</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.tr</groupId>
|
|
|
|
|
+ <artifactId>tr-spring-boot-starter-plugin-satoken</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.tr</groupId>
|
|
|
|
|
+ <artifactId>tr-spring-boot-starter-plugin-operatelog</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-bus-amqp</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 定时任务 -->
|
|
|
|
|
+ <!-- 引入 Quartz 依赖-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-quartz</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+</project>
|