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

77 lines
2.2 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-12-12 22:03:00 +08:00
<version>2.2.0-SNAPSHOT</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>
2019-12-12 20:50:44 +08:00
<description>A 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>
<!-- ********************** embed server: netty + gson ********************** -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.48.Final</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
<!-- ********************** plugin ********************** -->
<!-- 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>
<!-- spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<scope>provided</scope>
</dependency>
<!-- ********************** base ********************** -->
<!-- slf4j -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j-api.version}</version>
<scope>test</scope>
</dependency>
<!-- junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
2020-03-29 00:43:30 +08:00
<!-- javax.annotation-api -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
2020-03-29 00:43:30 +08:00
<version>${javax.annotation-api.version}</version>
<scope>provided</scope>
</dependency>
2015-12-21 21:57:53 +08:00
</dependencies>
</project>