xxl-job-spring-boot-starter/pom.xml
2022-08-17 11:42:36 +08:00

69 lines
2.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>com.simaek</groupId>
<artifactId>xxl-job-spring-boot-parent</artifactId>
<packaging>pom</packaging>
<version>2.3.1</version>
<modules>
<module>xxl-job-spring-boot-autoconfig</module>
<module>xxl-job-spring-boot-starter</module>
</modules>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<developers>
<developer>
<name>Yaser Hsueh</name>
<email>xueye404@qq.com</email>
<url>https://www.simaek.com</url>
</developer>
</developers>
<distributionManagement>
<repository>
<id>simaek-nexus</id>
<name>maven-releases</name>
<url>https://nas.xueye.io:8081/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>simaek-nexus</id>
<name>maven-snapshots</name>
<url>https://nas.xueye.io:8081/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.7.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.simaek</groupId>
<artifactId>xxl-job-spring-boot-autoconfig</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.xuxueli</groupId>
<artifactId>xxl-job-core</artifactId>
<version>2.3.1</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>