|
@@ -0,0 +1,138 @@
|
|
1
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+<!--
|
|
3
|
+ ~ The Hefei JingTong RDC(Research and Development Centre) Group.
|
|
4
|
+ ~ __________________
|
|
5
|
+ ~
|
|
6
|
+ ~ Copyright 2015-2021
|
|
7
|
+ ~ All Rights Reserved.
|
|
8
|
+ ~
|
|
9
|
+ ~ NOTICE: All information contained herein is, and remains
|
|
10
|
+ ~ the property of JingTong Company and its suppliers,
|
|
11
|
+ ~ if any.
|
|
12
|
+ -->
|
|
13
|
+
|
|
14
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
15
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
16
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
17
|
+ <modelVersion>4.0.0</modelVersion>
|
|
18
|
+
|
|
19
|
+ <parent>
|
|
20
|
+ <groupId>com.jingtong</groupId>
|
|
21
|
+ <artifactId>base-bpm</artifactId>
|
|
22
|
+ <version>0.0.2</version>
|
|
23
|
+ </parent>
|
|
24
|
+
|
|
25
|
+ <artifactId>bpm-core</artifactId>
|
|
26
|
+ <version>${parent.version}</version>
|
|
27
|
+ <packaging>jar</packaging>
|
|
28
|
+
|
|
29
|
+ <dependencies>
|
|
30
|
+ <dependency>
|
|
31
|
+ <groupId>com.jingtong.common</groupId>
|
|
32
|
+ <artifactId>data</artifactId>
|
|
33
|
+ <version>0.0.1</version>
|
|
34
|
+ </dependency>
|
|
35
|
+ <dependency>
|
|
36
|
+ <groupId>com.jingtong.common</groupId>
|
|
37
|
+ <artifactId>base</artifactId>
|
|
38
|
+ <version>0.0.1</version>
|
|
39
|
+ </dependency>
|
|
40
|
+ <dependency>
|
|
41
|
+ <groupId>org.springframework.boot</groupId>
|
|
42
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
43
|
+ </dependency>
|
|
44
|
+ <dependency>
|
|
45
|
+ <groupId>org.springframework.boot</groupId>
|
|
46
|
+ <artifactId>spring-boot-starter-jdbc</artifactId>
|
|
47
|
+ </dependency>
|
|
48
|
+
|
|
49
|
+ <dependency>
|
|
50
|
+ <groupId>com.baomidou</groupId>
|
|
51
|
+ <artifactId>mybatis-plus</artifactId>
|
|
52
|
+ </dependency>
|
|
53
|
+ <dependency>
|
|
54
|
+ <groupId>com.baomidou</groupId>
|
|
55
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
56
|
+ </dependency>
|
|
57
|
+ <dependency>
|
|
58
|
+ <groupId>com.alibaba</groupId>
|
|
59
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
60
|
+ <version>1.1.23</version>
|
|
61
|
+ </dependency>
|
|
62
|
+ <dependency>
|
|
63
|
+ <groupId>org.hibernate.validator</groupId>
|
|
64
|
+ <artifactId>hibernate-validator</artifactId>
|
|
65
|
+ </dependency>
|
|
66
|
+ <dependency>
|
|
67
|
+ <groupId>org.springframework.boot</groupId>
|
|
68
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
69
|
+ </dependency>
|
|
70
|
+ <dependency>
|
|
71
|
+ <groupId>org.apache.commons</groupId>
|
|
72
|
+ <artifactId>commons-lang3</artifactId>
|
|
73
|
+ </dependency>
|
|
74
|
+ <dependency>
|
|
75
|
+ <groupId>org.springframework.boot</groupId>
|
|
76
|
+ <artifactId>spring-boot-starter-freemarker</artifactId>
|
|
77
|
+ </dependency>
|
|
78
|
+ <dependency>
|
|
79
|
+ <groupId>org.activiti</groupId>
|
|
80
|
+ <artifactId>activiti-spring-boot-starter-basic</artifactId>
|
|
81
|
+ <version>6.0.0</version>
|
|
82
|
+ </dependency>
|
|
83
|
+ <dependency>
|
|
84
|
+ <groupId>dom4j</groupId>
|
|
85
|
+ <artifactId>dom4j</artifactId>
|
|
86
|
+ <version>1.6.1</version>
|
|
87
|
+ </dependency>
|
|
88
|
+ <dependency>
|
|
89
|
+ <groupId>jaxen</groupId>
|
|
90
|
+ <artifactId>jaxen</artifactId>
|
|
91
|
+ </dependency>
|
|
92
|
+ <dependency>
|
|
93
|
+ <groupId>mysql</groupId>
|
|
94
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
95
|
+ </dependency>
|
|
96
|
+ <dependency>
|
|
97
|
+ <groupId>com.alibaba</groupId>
|
|
98
|
+ <artifactId>fastjson</artifactId>
|
|
99
|
+ <version>1.2.73</version>
|
|
100
|
+ <scope>compile</scope>
|
|
101
|
+ </dependency>
|
|
102
|
+ <dependency>
|
|
103
|
+ <groupId>com.github.xiaoymin</groupId>
|
|
104
|
+ <artifactId>knife4j-spring-boot-starter</artifactId>
|
|
105
|
+ <version>2.0.1</version>
|
|
106
|
+ </dependency>
|
|
107
|
+ <dependency>
|
|
108
|
+ <groupId>de.codecentric</groupId>
|
|
109
|
+ <artifactId>spring-boot-admin-starter-client</artifactId>
|
|
110
|
+ <version>2.3.1</version>
|
|
111
|
+ </dependency>
|
|
112
|
+ <dependency>
|
|
113
|
+ <groupId>org.springframework.boot</groupId>
|
|
114
|
+ <artifactId>spring-boot-starter-security</artifactId>
|
|
115
|
+ <version>2.3.8.RELEASE</version>
|
|
116
|
+ </dependency>
|
|
117
|
+ <dependency>
|
|
118
|
+ <groupId>org.jolokia</groupId>
|
|
119
|
+ <artifactId>jolokia-core</artifactId>
|
|
120
|
+ <version>1.6.2</version>
|
|
121
|
+ </dependency>
|
|
122
|
+ <dependency>
|
|
123
|
+ <groupId>com.jingtong</groupId>
|
|
124
|
+ <artifactId>bpm-client-http</artifactId>
|
|
125
|
+ <version>0.0.1</version>
|
|
126
|
+ </dependency>
|
|
127
|
+ <dependency>
|
|
128
|
+ <groupId>cn.afterturn</groupId>
|
|
129
|
+ <artifactId>easypoi-spring-boot-starter</artifactId>
|
|
130
|
+ <version>4.3.0</version>
|
|
131
|
+ </dependency>
|
|
132
|
+ <dependency>
|
|
133
|
+ <groupId>com.jingtong</groupId>
|
|
134
|
+ <artifactId>bpm-client-base</artifactId>
|
|
135
|
+ <version>${parent.version}</version>
|
|
136
|
+ </dependency>
|
|
137
|
+ </dependencies>
|
|
138
|
+</project>
|