123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <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.xtframe</groupId>
- <artifactId>xtproject-oa</artifactId>
- <version>0.1.3-SNAPSHOT</version>
- </parent>
- <artifactId>xtWorkflow-oa</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.activiti</groupId>
- <artifactId>activiti-engine</artifactId>
- </dependency>
- <dependency>
- <groupId>org.activiti</groupId>
- <artifactId>activiti-spring</artifactId>
- </dependency>
- <dependency>
- <groupId>com.xtframe</groupId>
- <artifactId>xtSecurity-oa</artifactId>
- </dependency>
- <dependency>
- <groupId>com.xtframe</groupId>
- <artifactId>xtCore-oa</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>1.8.3</version>
- <exclusions>
- <exclusion>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <name>框架流程包</name>
- <description>提供统一的流程接口及其默认实现</description>
- </project>
|