12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?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-base</artifactId>
- <version>${parent.version}</version>
- <dependencies>
- <dependency>
- <groupId>com.jingtong.common</groupId>
- <artifactId>data</artifactId>
- <version>0.0.1</version>
- </dependency>
- <dependency>
- <groupId>hu.blackbelt.bundles.poi</groupId>
- <artifactId>org.apache.poi</artifactId>
- <version>4.0.1_1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct</artifactId>
- </dependency>
- </dependencies>
- </project>
|