| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | <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>xtadmin-oa</artifactId>	<packaging>war</packaging>	<dependencies>		<dependency>			<groupId>com.xtframe</groupId>			<artifactId>xtweb-oa</artifactId>		</dependency>		<!-- j2ee web spec -->		<dependency>			<groupId>javax.servlet</groupId>			<artifactId>servlet-api</artifactId>			<scope>provided</scope>		</dependency>		<dependency>			<groupId>javax.servlet</groupId>			<artifactId>jstl</artifactId>			<scope>provided</scope>		</dependency>		<dependency>			<groupId>taglibs</groupId>			<artifactId>standard</artifactId>			<scope>provided</scope>		</dependency>		<dependency>			<groupId>javax.servlet.jsp</groupId>			<artifactId>jsp-api</artifactId>			<scope>provided</scope>		</dependency>		<dependency>			<groupId>com.oracle</groupId>			<artifactId>ojdbc6</artifactId>			<version>1.0</version>		</dependency>		<!-- test -->		<dependency>			<groupId>junit</groupId>			<artifactId>junit</artifactId>		</dependency>		<dependency>			<groupId>org.springframework</groupId>			<artifactId>spring-test</artifactId>		</dependency>	</dependencies></project>
 |