1 Star 2 Fork 0

EricRan / LsCron

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
ranmc 提交于 2021-01-21 22:21 . 添加DelayQueue实现
<?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>org.ranmc</groupId>
<artifactId>cron</artifactId>
<version>1.0</version>
<name>LsCron</name>
<packaging>jar</packaging>
<description>定时任务小工具</description>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.name}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.7</version>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/ranmc/ls-cron.git
git@gitee.com:ranmc/ls-cron.git
ranmc
ls-cron
LsCron
master

搜索帮助