| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | <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.6.1-SNAPSHOT</version>	</parent>	<artifactId>xxl-job-executor-example</artifactId>	<packaging>war</packaging>	<properties>		<xxl-job.version>1.6.1-SNAPSHOT</xxl-job.version>		<spring.version>3.2.17.RELEASE</spring.version>	</properties>	<dependencies>		<!-- springframe start -->		<dependency>			<groupId>org.springframework</groupId>			<artifactId>spring-webmvc</artifactId>			<version>${spring.version}</version>		</dependency>		<!-- slf4j -->		<dependency>			<groupId>org.slf4j</groupId>			<artifactId>slf4j-log4j12</artifactId>			<version>1.7.5</version>		</dependency>				<!-- c3p0 -->		<dependency>			<groupId>com.mchange</groupId>			<artifactId>c3p0</artifactId>			<version>0.9.5.2</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>
 |