123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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>
- <groupId>hos-camel</groupId>
- <artifactId>hos-camel</artifactId>
- <version>1.3.0</version>
- <name>hos-camel</name>
- <description>IEP内置业务流程编排模块,本部分内容的维护主要是为了保证代码的完整性。后期如果使用编排工具后,这部分内容是不需要的。</description>
- <parent>
- <groupId>com.yihu.hos</groupId>
- <artifactId>hos-web-camel-dependencies</artifactId>
- <version>1.3.0</version>
- <relativePath>../hos-web-camel-dependencies</relativePath> <!-- lookup parent from repository -->
- </parent>
- <dependencies>
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>dom4j</groupId>
- <artifactId>dom4j</artifactId>
- <version>1.6.1</version>
- </dependency>
- </dependencies>
- </project>
|