mirror of
https://github.com/PowerJob/PowerJob.git
synced 2025-07-17 00:00:04 +08:00
37 lines
1.2 KiB
XML
37 lines
1.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">
|
|
<parent>
|
|
<artifactId>oh-my-scheduler</artifactId>
|
|
<groupId>com.github.kfcfans</groupId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>oh-my-scheduler-client</artifactId>
|
|
<version>1.2.0</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<oms.common.version>1.2.0</oms.common.version>
|
|
<junit.version>5.6.1</junit.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- oms-common -->
|
|
<dependency>
|
|
<groupId>com.github.kfcfans</groupId>
|
|
<artifactId>oh-my-scheduler-common</artifactId>
|
|
<version>${oms.common.version}</version>
|
|
</dependency>
|
|
<!-- Junit 测试 -->
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |