123456789101112131415161718192021222324252627282930313233343536373839 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ The Hefei JingTong RDC(Research and Development Centre) Group.
- ~ __________________
- ~
- ~ Copyright 2015-2021
- ~ All Rights Reserved.
- ~
- ~ NOTICE: All information contained herein is, and remains
- ~ the property of JingTong Company and its suppliers,
- ~ if any.
- -->
- <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>com.jingtong</groupId>
- <artifactId>base-bpm</artifactId>
- <version>0.0.2</version>
- </parent>
- <artifactId>bpm-client-http</artifactId>
- <version>${parent.version}</version>
- <dependencies>
- <dependency>
- <groupId>com.jingtong</groupId>
- <artifactId>bpm-client-base</artifactId>
- <version>${parent.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.76</version>
- </dependency>
- </dependencies>
- </project>
|