1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <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>2.1.0</version>
- </parent>
- <artifactId>xxl-job-core</artifactId>
- <packaging>jar</packaging>
- <name>${project.artifactId}</name>
- <description>A lightweight distributed task scheduling framework.</description>
- <url>http://www.xuxueli.com/</url>
- <dependencies>
- <!-- xxl-rpc-core -->
- <dependency>
- <groupId>com.xuxueli</groupId>
- <artifactId>xxl-rpc-core</artifactId>
- <version>${xxl-rpc.version}</version>
- </dependency>
- <!-- groovy-all -->
- <dependency>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy</artifactId>
- <version>${groovy.version}</version>
- </dependency>
- <!-- commons-exec -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-exec</artifactId>
- <version>${commons-exec.version}</version>
- </dependency>
- <!-- spring-context -->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>${spring.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.powermock</groupId>
- <artifactId>powermock-api-mockito</artifactId>
- <version>1.6.5</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.powermock</groupId>
- <artifactId>powermock-module-junit4</artifactId>
- <version>1.6.5</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-all</artifactId>
- <version>1.10.19</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.diffblue</groupId>
- <artifactId>deeptestutils</artifactId>
- <version>1.9.0</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|