xx-job/xxl-job-executor-samples/xxl-job-executor-sample-jboot/pom.xml

56 lines
1.7 KiB
XML
Raw Normal View History

2019-05-12 08:47:07 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2019-05-23 15:34:22 +08:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2019-05-12 08:47:07 +08:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.xuxueli</groupId>
2019-05-23 15:34:22 +08:00
<artifactId>xxl-job-executor-samples</artifactId>
2020-04-12 03:21:29 +08:00
<version>2.2.0</version>
2019-05-12 08:47:07 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>xxl-job-executor-sample-jboot</artifactId>
2019-05-23 15:34:22 +08:00
<packaging>jar</packaging>
2019-05-12 08:47:07 +08:00
<properties>
2019-05-23 15:34:22 +08:00
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2019-05-12 08:47:07 +08:00
</properties>
<dependencies>
2019-05-23 15:34:22 +08:00
<!-- jboot -->
2019-05-12 08:47:07 +08:00
<dependency>
2019-05-23 15:34:22 +08:00
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>2.0.9</version>
2019-05-12 08:47:07 +08:00
</dependency>
<!-- xxl-job-core -->
<dependency>
<groupId>com.xuxueli</groupId>
<artifactId>xxl-job-core</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
2019-05-23 15:34:22 +08:00
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
2019-05-12 08:47:07 +08:00
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.1.11</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.11</version>
</dependency>
</dependencies>
</project>