| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 | 
							- <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.xxl</groupId>
 
- 		<artifactId>xxl-job</artifactId>
 
- 		<version>1.3.0-SNAPSHOT</version>
 
- 	</parent>
 
- 	<artifactId>xxl-job-client</artifactId>
 
- 	<version>1.3.1</version>
 
- 	<dependencies>
 
- 		<!-- servlet -->
 
- 		<dependency>
 
- 			<groupId>javax.servlet</groupId>
 
- 			<artifactId>servlet-api</artifactId>
 
- 			<version>2.5</version>
 
- 			<scope>provided</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>javax.servlet.jsp</groupId>
 
- 			<artifactId>jsp-api</artifactId>
 
- 			<version>2.1</version>
 
- 			<scope>provided</scope>
 
- 		</dependency>
 
- 		<!-- jetty -->
 
- 		<dependency>
 
- 			<groupId>org.eclipse.jetty</groupId>
 
- 			<artifactId>jetty-server</artifactId>
 
- 			<version>7.6.9.v20130131</version>
 
- 		</dependency>
 
- 				
 
- 		<!-- slf4j -->
 
- 		<dependency>
 
- 			<groupId>org.slf4j</groupId>
 
- 			<artifactId>slf4j-log4j12</artifactId>
 
- 			<version>1.7.5</version>
 
- 		</dependency>
 
- 		<!-- jackson -->
 
- 		<dependency>
 
- 			<groupId>org.codehaus.jackson</groupId>
 
- 			<artifactId>jackson-mapper-asl</artifactId>
 
- 			<version>1.9.13</version>
 
- 		</dependency>
 
- 		
 
- 		<!-- httpclient -->
 
- 		<dependency>
 
- 			<groupId>org.apache.httpcomponents</groupId>
 
- 			<artifactId>httpclient</artifactId>
 
- 			<version>4.3.6</version>
 
- 		</dependency>
 
- 		
 
- 		<!-- spring-context -->
 
- 		<dependency>
 
- 			<groupId>org.springframework</groupId>
 
- 			<artifactId>spring-context</artifactId>
 
- 			<version>3.2.14.RELEASE</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 	</dependencies>
 
- 	<build>
 
- 		<plugins>
 
- 			<plugin>
 
- 				<groupId>org.apache.maven.plugins</groupId>
 
- 				<artifactId>maven-compiler-plugin</artifactId>
 
- 				<version>3.1</version>
 
- 				<configuration>
 
- 					<source>1.6</source>
 
- 					<target>1.6</target>
 
- 					<encoding>UTF8</encoding>
 
- 				</configuration>
 
- 			</plugin>
 
- 			<plugin>
 
- 				<groupId>org.apache.maven.plugins</groupId>
 
- 				<artifactId>maven-surefire-plugin</artifactId>
 
- 				<version>2.19.1</version>
 
- 				<configuration>
 
- 					<skip>true</skip>
 
- 				</configuration>
 
- 			</plugin>
 
- 		</plugins>
 
- 	</build>
 
- </project>
 
 
  |