-
Notifications
You must be signed in to change notification settings - Fork 42
/
pom.xml
88 lines (79 loc) · 2.7 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.ponfee</groupId>
<artifactId>disjob-admin</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>ruoyi-disjob</artifactId>
<description>disjob后台管理</description>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>cn.ponfee</groupId>
<artifactId>disjob-bom</artifactId>
<version>${disjob.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- 引入`disjob-test`模块中的一些内置`JobExecutor`用于测试,实际开发中建议去除此依赖 -->
<dependency>
<groupId>cn.ponfee</groupId>
<artifactId>disjob-test</artifactId>
</dependency>
<dependency>
<groupId>cn.ponfee</groupId>
<artifactId>ruoyi-common</artifactId>
</dependency>
<dependency>
<groupId>cn.ponfee</groupId>
<artifactId>ruoyi-system</artifactId>
</dependency>
<dependency>
<groupId>guru.nidi</groupId>
<artifactId>graphviz-java</artifactId>
<version>${graphviz-java.version}</version>
</dependency>
<dependency>
<groupId>cn.ponfee</groupId>
<artifactId>disjob-id</artifactId>
</dependency>
<dependency>
<groupId>cn.ponfee</groupId>
<artifactId>disjob-supervisor</artifactId>
</dependency>
<dependency>
<groupId>cn.ponfee</groupId>
<artifactId>disjob-worker</artifactId>
</dependency>
<!-- Registry: select one implementation for server registry -->
<dependency>
<groupId>cn.ponfee</groupId>
<artifactId>disjob-registry-redis</artifactId>
<!--
<artifactId>disjob-registry-database</artifactId>
<artifactId>disjob-registry-redis</artifactId>
<artifactId>disjob-registry-consul</artifactId>
<artifactId>disjob-registry-nacos</artifactId>
<artifactId>disjob-registry-zookeeper</artifactId>
<artifactId>disjob-registry-etcd</artifactId>
-->
</dependency>
<!-- Dispatching: select one implementation for task dispatching -->
<dependency>
<groupId>cn.ponfee</groupId>
<artifactId>disjob-dispatch-http</artifactId>
<!--
<artifactId>disjob-dispatch-redis</artifactId>
<artifactId>disjob-dispatch-http</artifactId>
-->
</dependency>
</dependencies>
</project>