| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 | 
							- <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.xuxueli</groupId>
 
- 		<artifactId>xxl-job</artifactId>
 
- 		<version>1.5.0</version>
 
- 	</parent>
 
- 	<artifactId>xxl-job-executor-example</artifactId>
 
- 	<packaging>war</packaging>
 
- 	<properties>
 
- 		<xxl-job.version>1.5.0</xxl-job.version>
 
- 		<spring.version>3.2.14.RELEASE</spring.version>
 
- 	</properties>
 
- 	<dependencies>
 
- 		<!-- springframe start -->
 
- 		<dependency>
 
- 			<groupId>org.springframework</groupId>
 
- 			<artifactId>spring-webmvc</artifactId>
 
- 			<version>${spring.version}</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework</groupId>
 
- 			<artifactId>spring-context-support</artifactId>
 
- 			<version>${spring.version}</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework</groupId>
 
- 			<artifactId>spring-orm</artifactId>
 
- 			<version>${spring.version}</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework</groupId>
 
- 			<artifactId>spring-test</artifactId>
 
- 			<version>${spring.version}</version>
 
- 		</dependency>
 
- 		<!-- springframe end -->
 
- 		<!-- aspectjweaver (support spring aop) -->
 
- 		<dependency>
 
- 			<groupId>org.aspectj</groupId>
 
- 			<artifactId>aspectjweaver</artifactId>
 
- 			<version>1.8.7</version>
 
- 		</dependency>
 
- 		
 
- 		<!-- slf4j -->
 
- 		<dependency>
 
- 			<groupId>org.slf4j</groupId>
 
- 			<artifactId>slf4j-log4j12</artifactId>
 
- 			<version>1.7.5</version>
 
- 		</dependency>
 
- 		
 
- 		<!-- c3p0 -->
 
- 		<dependency>
 
- 			<groupId>c3p0</groupId>
 
- 			<artifactId>c3p0</artifactId>
 
- 			<version>0.9.1.2</version>
 
- 		</dependency>
 
- 		<!-- mybatis-spring -->
 
- 		<dependency>
 
- 			<groupId>org.mybatis</groupId>
 
- 			<artifactId>mybatis-spring</artifactId>
 
- 			<version>1.2.2</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.mybatis</groupId>
 
- 			<artifactId>mybatis</artifactId>
 
- 			<version>3.2.8</version>
 
- 		</dependency>
 
- 		<!-- mysql-connector -->
 
- 		<dependency>
 
- 			<groupId>mysql</groupId>
 
- 			<artifactId>mysql-connector-java</artifactId>
 
- 			<version>5.1.29</version>
 
- 		</dependency>
 
- 		
 
- 		<!-- xxl-job-core -->
 
- 		<dependency>
 
- 			<groupId>com.xuxueli</groupId>
 
- 			<artifactId>xxl-job-core</artifactId>
 
- 			<version>${xxl-job.version}</version>
 
- 		</dependency>
 
- 		
 
- 	</dependencies>
 
- </project>
 
 
  |