91 lines
3.0 KiB
XML
91 lines
3.0 KiB
XML
<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>cn.iocoder.cloud</groupId>
|
|
<artifactId>yudao-framework</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<artifactId>ludu-job-core</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>A distributed task scheduling framework.</description>
|
|
<url>https://www.xuxueli.com/</url>
|
|
<properties>
|
|
<xxl-job-version>2.4.2-SNAPSHOT</xxl-job-version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
<netty.version>4.1.108.Final</netty.version>
|
|
<gson.version>2.10.1</gson.version>
|
|
|
|
<spring.version>5.3.34</spring.version>
|
|
<spring-boot.version>2.7.18</spring-boot.version>
|
|
|
|
<mybatis-spring-boot-starter.version>2.3.2</mybatis-spring-boot-starter.version>
|
|
<mysql-connector-j.version>8.3.0</mysql-connector-j.version>
|
|
|
|
<slf4j-api.version>2.0.13</slf4j-api.version>
|
|
<junit-jupiter.version>5.10.2</junit-jupiter.version>
|
|
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
|
|
|
|
<groovy.version>4.0.21</groovy.version>
|
|
|
|
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
|
|
<maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
|
|
<maven-gpg-plugin.version>3.2.3</maven-gpg-plugin.version>
|
|
</properties>
|
|
<dependencies>
|
|
|
|
<!-- ********************** embed server: netty + gson ********************** -->
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-codec-http</artifactId>
|
|
<version>${netty.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>${gson.version}</version>
|
|
</dependency>
|
|
|
|
<!-- ********************** plugin ********************** -->
|
|
<!-- groovy-all -->
|
|
<dependency>
|
|
<groupId>org.apache.groovy</groupId>
|
|
<artifactId>groovy</artifactId>
|
|
<version>${groovy.version}</version>
|
|
</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>
|
|
|
|
<!-- javax.annotation-api -->
|
|
<dependency>
|
|
<groupId>javax.annotation</groupId>
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
<version>${javax.annotation-api.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |