<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">
	<parent>
		<groupId>cc.ecore</groupId>
		<artifactId>spring-jfinal-parent</artifactId>
		<version>0.1.2</version>
	</parent>

	<modelVersion>4.0.0</modelVersion>
	<artifactId>spring-jfinal-plus</artifactId>
	<packaging>jar</packaging>
	<name>${project.artifactId}</name>
	<description>spring jfinal ioc plugin</description>
	
	<properties>
		<!-- version of dependency -->
		<spring.version>3.2.0.RELEASE</spring.version>
		<jfinal.version>1.4</jfinal.version>
	</properties>

	<dependencies>
		<!--必须依赖 -->
		<!-- jfinal -->
		<dependency>
			<groupId>com.jfinal</groupId>
			<artifactId>jfinal</artifactId>
			<version>${jfinal.version}</version>
			<scope>provided</scope>
		</dependency>
		<!-- spring -->
		<!-- servlet -->
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.5</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-web</artifactId>
			<version>${spring.version}</version>
			<scope>provided</scope>
		</dependency>
	</dependencies>
</project>