xx-job/xxl-job-core/pom.xml

57 lines
1.6 KiB
XML
Raw Normal View History

2015-12-21 21:57:53 +08:00
<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>
2015-12-26 22:31:34 +08:00
<artifactId>xxl-job</artifactId>
2019-11-22 19:27:58 +08:00
<version>2.1.1</version>
2015-12-21 21:57:53 +08:00
</parent>
2016-05-23 18:29:30 +08:00
<artifactId>xxl-job-core</artifactId>
2016-09-06 22:08:59 +08:00
<packaging>jar</packaging>
2015-12-21 21:57:53 +08:00
2017-05-17 21:13:48 +08:00
<name>${project.artifactId}</name>
2017-03-25 14:10:21 +08:00
<description>A lightweight distributed task scheduling framework.</description>
2019-11-06 12:36:55 +08:00
<url>https://www.xuxueli.com/</url>
2017-03-25 14:10:21 +08:00
2015-12-21 21:57:53 +08:00
<dependencies>
<!-- xxl-rpc-core -->
<dependency>
<groupId>com.xuxueli</groupId>
<artifactId>xxl-rpc-core</artifactId>
<version>${xxl-rpc.version}</version>
</dependency>
<!-- groovy-all -->
2015-12-21 21:57:53 +08:00
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>${groovy.version}</version>
2015-12-21 21:57:53 +08:00
</dependency>
<!-- commons-exec -->
2015-12-21 21:57:53 +08:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
<version>${commons-exec.version}</version>
2015-12-21 21:57:53 +08:00
</dependency>
<!-- spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<scope>provided</scope>
</dependency>
<!-- junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
2015-12-21 21:57:53 +08:00
</dependencies>
</project>