1234567891011121314151617181920212223242526 |
- <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>
- <relativePath>../../</relativePath>
- </parent>
- <artifactId>xtCore-oa</artifactId>
- <name>新通开发框架核心</name>
- <properties>
- <spring.version>4.1.2.RELEASE</spring.version>
- <jdk.version>1.7</jdk.version>
- <jetty.version>7.6.8.v20121106</jetty.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <hibernate.version>4.3.7.Final</hibernate.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.xtframe</groupId>
- <artifactId>xtutil-oa</artifactId>
- </dependency>
- </dependencies>
- <description>提供框架核心定义</description>
- </project>
|