|
@@ -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.3</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>
|