Browse Source

[feature]bpm0.0.4版本发布

JieZ 3 years ago
parent
commit
22fe40083e

BIN
.DS_Store


BIN
com/.DS_Store


BIN
com/jingtong/.DS_Store


+ 3 - 0
com/jingtong/base-bpm/0.0.4/_remote.repositories

@@ -0,0 +1,3 @@
1
+#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
+#Thu Mar 17 09:56:22 CST 2022
3
+base-bpm-0.0.4.pom>=

+ 241 - 0
com/jingtong/base-bpm/0.0.4/base-bpm-0.0.4.pom

@@ -0,0 +1,241 @@
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
+    <groupId>com.jingtong</groupId>
18
+    <modelVersion>4.0.0</modelVersion>
19
+    <artifactId>base-bpm</artifactId>
20
+    <packaging>pom</packaging>
21
+    <version>0.0.4</version>
22
+    <modules>
23
+        <module>bpm-client-base</module>
24
+        <module>bpm-client</module>
25
+        <module>bpm-client-http</module>
26
+        <module>bpm-core</module>
27
+        <module>devtools</module>
28
+    </modules>
29
+    <properties>
30
+        <jixiang.version>0.0.1</jixiang.version>
31
+        <java.version>1.8</java.version>
32
+        <maven.compiler.source>1.8</maven.compiler.source>
33
+        <maven.compiler.target>1.8</maven.compiler.target>
34
+
35
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36
+        <encoding>UTF-8</encoding>
37
+
38
+        <spring-boot.version>2.3.8.RELEASE</spring-boot.version>
39
+
40
+        <mybatis-plus.version>3.4.1</mybatis-plus.version>
41
+        <aviator.version>5.2.1</aviator.version>
42
+
43
+        <guava.version>29.0-jre</guava.version>
44
+        <hutool.version>5.5.4</hutool.version>
45
+        <commons-io.version>2.5</commons-io.version>
46
+
47
+        <lombok.version>1.18.16</lombok.version>
48
+        <slf4j.version>1.7.30</slf4j.version>
49
+        <logback.version>1.2.3</logback.version>
50
+        <jackson-bom.version>2.11.3</jackson-bom.version>
51
+        <seata.version>1.4.1</seata.version>
52
+        <knife4j.version>2.0.1</knife4j.version>
53
+        <mysql.version>5.1.48</mysql.version>
54
+        <mapstruct.version>1.4.2.Final</mapstruct.version>
55
+    </properties>
56
+    <dependencyManagement>
57
+        <dependencies>
58
+            <!-- spring boot 依赖 -->
59
+            <dependency>
60
+                <groupId>org.springframework.boot</groupId>
61
+                <artifactId>spring-boot-dependencies</artifactId>
62
+                <version>${spring-boot.version}</version>
63
+                <type>pom</type>
64
+                <scope>import</scope>
65
+            </dependency>
66
+
67
+            <dependency>
68
+                <groupId>commons-io</groupId>
69
+                <artifactId>commons-io</artifactId>
70
+                <version>${commons-io.version}</version>
71
+            </dependency>
72
+            <dependency>
73
+                <groupId>org.slf4j</groupId>
74
+                <artifactId>slf4j-api</artifactId>
75
+                <version>${slf4j.version}</version>
76
+            </dependency>
77
+            <dependency>
78
+                <groupId>org.slf4j</groupId>
79
+                <artifactId>log4j-over-slf4j</artifactId>
80
+                <version>${slf4j.version}</version>
81
+            </dependency>
82
+            <dependency>
83
+                <groupId>ch.qos.logback</groupId>
84
+                <artifactId>logback-core</artifactId>
85
+                <version>${logback.version}</version>
86
+            </dependency>
87
+            <dependency>
88
+                <groupId>ch.qos.logback</groupId>
89
+                <artifactId>logback-classic</artifactId>
90
+                <version>${logback.version}</version>
91
+            </dependency>
92
+
93
+            <dependency>
94
+                <groupId>cn.hutool</groupId>
95
+                <artifactId>hutool-core</artifactId>
96
+                <version>${hutool.version}</version>
97
+            </dependency>
98
+            <dependency>
99
+                <groupId>cn.hutool</groupId>
100
+                <artifactId>hutool-crypto</artifactId>
101
+                <version>${hutool.version}</version>
102
+            </dependency>
103
+
104
+            <dependency>
105
+                <groupId>com.google.guava</groupId>
106
+                <artifactId>guava</artifactId>
107
+                <version>${guava.version}</version>
108
+            </dependency>
109
+
110
+            <dependency>
111
+                <groupId>com.googlecode.aviator</groupId>
112
+                <artifactId>aviator</artifactId>
113
+                <version>${aviator.version}</version>
114
+                <exclusions>
115
+                    <exclusion>
116
+                        <groupId>commons-logging</groupId>
117
+                        <artifactId>commons-logging</artifactId>
118
+                    </exclusion>
119
+                    <exclusion>
120
+                        <groupId>commons-collections</groupId>
121
+                        <artifactId>commons-collections</artifactId>
122
+                    </exclusion>
123
+                </exclusions>
124
+            </dependency>
125
+
126
+            <!-- Mybatis Plus 插件 -->
127
+            <dependency>
128
+                <groupId>com.baomidou</groupId>
129
+                <artifactId>mybatis-plus</artifactId>
130
+                <version>${mybatis-plus.version}</version>
131
+            </dependency>
132
+            <dependency>
133
+                <groupId>com.baomidou</groupId>
134
+                <artifactId>mybatis-plus-core</artifactId>
135
+                <version>${mybatis-plus.version}</version>
136
+            </dependency>
137
+            <dependency>
138
+                <groupId>com.baomidou</groupId>
139
+                <artifactId>mybatis-plus-extension</artifactId>
140
+                <version>${mybatis-plus.version}</version>
141
+            </dependency>
142
+            <dependency>
143
+                <groupId>com.baomidou</groupId>
144
+                <artifactId>mybatis-plus-boot-starter</artifactId>
145
+                <version>${mybatis-plus.version}</version>
146
+            </dependency>
147
+            <dependency>
148
+                <groupId>com.baomidou</groupId>
149
+                <artifactId>mybatis-plus-generator</artifactId>
150
+                <version>${mybatis-plus.version}</version>
151
+            </dependency>
152
+            <dependency>
153
+                <groupId>p6spy</groupId>
154
+                <artifactId>p6spy</artifactId>
155
+                <version>3.9.0</version>
156
+            </dependency>
157
+            <!--mysql驱动-->
158
+            <dependency>
159
+                <groupId>mysql</groupId>
160
+                <artifactId>mysql-connector-java</artifactId>
161
+                <version>${mysql.version}</version>
162
+            </dependency>
163
+            <dependency>
164
+                <groupId>org.mapstruct</groupId>
165
+                <artifactId>mapstruct</artifactId>
166
+                <version>${mapstruct.version}</version>
167
+            </dependency>
168
+        </dependencies>
169
+    </dependencyManagement>
170
+    <dependencies>
171
+
172
+        <dependency>
173
+            <groupId>org.springframework.boot</groupId>
174
+            <artifactId>spring-boot-starter-test</artifactId>
175
+            <scope>test</scope>
176
+        </dependency>
177
+
178
+        <dependency>
179
+            <groupId>org.springframework.boot</groupId>
180
+            <artifactId>spring-boot-configuration-processor</artifactId>
181
+            <optional>true</optional>
182
+        </dependency>
183
+        <dependency>
184
+            <groupId>org.projectlombok</groupId>
185
+            <artifactId>lombok</artifactId>
186
+            <version>${lombok.version}</version>
187
+            <optional>true</optional>
188
+        </dependency>
189
+    </dependencies>
190
+    <repositories>
191
+        <repository>
192
+            <id>jing-tong</id>
193
+            <name>JingTong Maveen Repository</name>
194
+            <url>http://code.jing-tong.com:3000/jie.zhang/maven2/raw/master/</url>
195
+        </repository>
196
+    </repositories>
197
+        <build>
198
+            <plugins>
199
+                <plugin>
200
+                    <groupId>org.apache.maven.plugins</groupId>
201
+                    <artifactId>maven-source-plugin</artifactId>
202
+                    <version>2.4</version>
203
+                    <executions>
204
+                        <execution>
205
+                            <id>attach-sources</id>
206
+                            <phase>verify</phase><!--  要绑定到的生命周期的阶段 在verify之后,install之前执行下面指定的goal -->
207
+                            <goals>
208
+                                <goal>jar-no-fork</goal><!-- 类似执行mvn source:jar -->
209
+                            </goals>
210
+                        </execution>
211
+                    </executions>
212
+                </plugin>
213
+                <plugin>
214
+                    <groupId>org.apache.maven.plugins</groupId>
215
+                    <artifactId>maven-compiler-plugin</artifactId>
216
+                    <version>3.8.1</version>
217
+                    <configuration>
218
+                        <source>1.8</source>
219
+                        <target>1.8</target>
220
+                        <annotationProcessorPaths>
221
+                            <path>
222
+                                <groupId>org.mapstruct</groupId>
223
+                                <artifactId>mapstruct-processor</artifactId>
224
+                                <version>${mapstruct.version}</version>
225
+                            </path>
226
+                            <path>
227
+                                <groupId>org.projectlombok</groupId>
228
+                                <artifactId>lombok</artifactId>
229
+                                <version>1.18.16</version>
230
+                            </path>
231
+                            <path>
232
+                                <groupId>org.projectlombok</groupId>
233
+                                <artifactId>lombok-mapstruct-binding</artifactId>
234
+                                <version>0.2.0</version>
235
+                            </path>
236
+                        </annotationProcessorPaths>
237
+                    </configuration>
238
+                </plugin>
239
+            </plugins>
240
+        </build>
241
+</project>

+ 5 - 0
com/jingtong/bpm-client-base/0.0.4/_remote.repositories

@@ -0,0 +1,5 @@
1
+#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
+#Thu Mar 17 09:56:25 CST 2022
3
+bpm-client-base-0.0.4-sources.jar>=
4
+bpm-client-base-0.0.4.jar>=
5
+bpm-client-base-0.0.4.pom>=

BIN
com/jingtong/bpm-client-base/0.0.4/bpm-client-base-0.0.4-sources.jar


BIN
com/jingtong/bpm-client-base/0.0.4/bpm-client-base-0.0.4.jar


+ 61 - 0
com/jingtong/bpm-client-base/0.0.4/bpm-client-base-0.0.4.pom

@@ -0,0 +1,61 @@
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.4</version>
23
+    </parent>
24
+
25
+    <artifactId>bpm-client-base</artifactId>
26
+    <version>${parent.version}</version>
27
+    <dependencies>
28
+        <dependency>
29
+            <groupId>com.jingtong.common</groupId>
30
+            <artifactId>data</artifactId>
31
+            <version>0.0.1</version>
32
+        </dependency>
33
+        <dependency>
34
+            <groupId>hu.blackbelt.bundles.poi</groupId>
35
+            <artifactId>org.apache.poi</artifactId>
36
+            <version>4.0.1_1</version>
37
+            <scope>compile</scope>
38
+        </dependency>
39
+        <dependency>
40
+            <groupId>org.mapstruct</groupId>
41
+            <artifactId>mapstruct</artifactId>
42
+        </dependency>
43
+        <dependency>
44
+            <groupId>org.springframework</groupId>
45
+            <artifactId>spring-web</artifactId>
46
+        </dependency>
47
+        <dependency>
48
+            <groupId>io.seata</groupId>
49
+            <artifactId>seata-spring-boot-starter</artifactId>
50
+            <version>1.4.2</version>
51
+            <scope>compile</scope>
52
+        </dependency>
53
+        <dependency>
54
+            <groupId>org.apache.tomcat.embed</groupId>
55
+            <artifactId>tomcat-embed-core</artifactId>
56
+            <scope>compile</scope>
57
+        </dependency>
58
+    </dependencies>
59
+
60
+
61
+</project>

+ 5 - 0
com/jingtong/bpm-client-http/0.0.4/_remote.repositories

@@ -0,0 +1,5 @@
1
+#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
+#Thu Mar 17 09:56:26 CST 2022
3
+bpm-client-http-0.0.4.jar>=
4
+bpm-client-http-0.0.4-sources.jar>=
5
+bpm-client-http-0.0.4.pom>=

BIN
com/jingtong/bpm-client-http/0.0.4/bpm-client-http-0.0.4-sources.jar


BIN
com/jingtong/bpm-client-http/0.0.4/bpm-client-http-0.0.4.jar


+ 39 - 0
com/jingtong/bpm-client-http/0.0.4/bpm-client-http-0.0.4.pom

@@ -0,0 +1,39 @@
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.4</version>
23
+    </parent>
24
+
25
+    <artifactId>bpm-client-http</artifactId>
26
+    <version>${parent.version}</version>
27
+    <dependencies>
28
+        <dependency>
29
+            <groupId>com.jingtong</groupId>
30
+            <artifactId>bpm-client-base</artifactId>
31
+            <version>${parent.version}</version>
32
+        </dependency>
33
+        <dependency>
34
+            <groupId>com.alibaba</groupId>
35
+            <artifactId>fastjson</artifactId>
36
+            <version>1.2.76</version>
37
+        </dependency>
38
+    </dependencies>
39
+</project>

+ 5 - 0
com/jingtong/bpm-client/0.0.4/_remote.repositories

@@ -0,0 +1,5 @@
1
+#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
+#Thu Mar 17 09:56:26 CST 2022
3
+bpm-client-0.0.4.pom>=
4
+bpm-client-0.0.4-sources.jar>=
5
+bpm-client-0.0.4.jar>=

BIN
com/jingtong/bpm-client/0.0.4/bpm-client-0.0.4-sources.jar


BIN
com/jingtong/bpm-client/0.0.4/bpm-client-0.0.4.jar


+ 55 - 0
com/jingtong/bpm-client/0.0.4/bpm-client-0.0.4.pom

@@ -0,0 +1,55 @@
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.4</version>
23
+    </parent>
24
+
25
+    <artifactId>bpm-client</artifactId>
26
+    <version>${parent.version}</version>
27
+    <dependencies>
28
+        <dependency>
29
+            <groupId>com.jingtong.common</groupId>
30
+            <artifactId>base</artifactId>
31
+            <version>0.0.1</version>
32
+        </dependency>
33
+        <dependency>
34
+            <groupId>com.alibaba.cloud</groupId>
35
+            <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
36
+            <version>2.2.5.RELEASE</version>
37
+        </dependency>
38
+        <dependency>
39
+            <groupId>org.springframework.cloud</groupId>
40
+            <artifactId>spring-cloud-starter-openfeign</artifactId>
41
+            <version>2.2.5.RELEASE</version>
42
+        </dependency>
43
+        <dependency>
44
+            <groupId>io.github.openfeign</groupId>
45
+            <artifactId>feign-httpclient</artifactId>
46
+            <version>10.10.1</version>
47
+        </dependency>
48
+        <dependency>
49
+            <groupId>com.jingtong</groupId>
50
+            <artifactId>bpm-client-base</artifactId>
51
+            <version>${parent.version}</version>
52
+        </dependency>
53
+    </dependencies>
54
+
55
+</project>

BIN
com/jingtong/bpm-core/.DS_Store


+ 5 - 0
com/jingtong/bpm-core/0.0.4/_remote.repositories

@@ -0,0 +1,5 @@
1
+#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
+#Thu Mar 17 09:56:36 CST 2022
3
+bpm-core-0.0.4.pom>=
4
+bpm-core-0.0.4.jar>=
5
+bpm-core-0.0.4-sources.jar>=

BIN
com/jingtong/bpm-core/0.0.4/bpm-core-0.0.4-sources.jar


BIN
com/jingtong/bpm-core/0.0.4/bpm-core-0.0.4.jar


+ 6 - 0
com/jingtong/bpm-core/0.0.4/bpm-core-0.0.4.jar.lastUpdated

@@ -0,0 +1,6 @@
1
+#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
+#Mon Dec 27 11:28:20 CST 2021
3
+http\://code.jing-tong.com\:3000/jie.zhang/maven2/raw/master/.lastUpdated=1640575700714
4
+https\://maven.aliyun.com/repository/public/.lastUpdated=1640575700902
5
+http\://code.jing-tong.com\:3000/jie.zhang/maven2/raw/master/.error=
6
+https\://maven.aliyun.com/repository/public/.error=

+ 143 - 0
com/jingtong/bpm-core/0.0.4/bpm-core-0.0.4.pom

@@ -0,0 +1,143 @@
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.4</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>${parent.version}</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
+        <dependency>
138
+            <groupId>io.seata</groupId>
139
+            <artifactId>seata-spring-boot-starter</artifactId>
140
+            <version>1.4.2</version>
141
+        </dependency>
142
+    </dependencies>
143
+</project>

+ 6 - 0
com/jingtong/bpm-core/0.0.4/bpm-core-0.0.4.pom.lastUpdated

@@ -0,0 +1,6 @@
1
+#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
+#Mon Dec 27 11:28:19 CST 2021
3
+http\://code.jing-tong.com\:3000/jie.zhang/maven2/raw/master/.lastUpdated=1640575699613
4
+https\://maven.aliyun.com/repository/public/.lastUpdated=1640575699998
5
+http\://code.jing-tong.com\:3000/jie.zhang/maven2/raw/master/.error=
6
+https\://maven.aliyun.com/repository/public/.error=