mirror of
https://github.com/PowerJob/PowerJob.git
synced 2025-07-17 00:00:04 +08:00
67 lines
2.3 KiB
XML
67 lines
2.3 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">
|
|
<parent>
|
|
<artifactId>powerjob</artifactId>
|
|
<groupId>tech.powerjob</groupId>
|
|
<version>4.0.0</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>powerjob-worker-spring-boot-starter</artifactId>
|
|
<version>4.3.0</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<powerjob.worker.version>4.3.0</powerjob.worker.version>
|
|
<springboot.version>2.7.4</springboot.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- oms-worker -->
|
|
<dependency>
|
|
<groupId>tech.powerjob</groupId>
|
|
<artifactId>powerjob-worker</artifactId>
|
|
<version>${powerjob.worker.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>tech.powerjob</groupId>
|
|
<artifactId>powerjob-remote-impl-http</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>tech.powerjob</groupId>
|
|
<artifactId>powerjob-remote-impl-akka</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.powerjob</groupId>
|
|
<artifactId>powerjob-remote-impl-http-spring</artifactId>
|
|
<version>${powerjob.worker.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
<version>${springboot.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<version>${springboot.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<version>${springboot.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |