| 组织ID: |
au.id.ajlane.scheduler |
| 项目ID: |
scheduler |
| 版本: |
0.0.1 |
| 最后修改时间: |
2019-10-29 04:17:10 |
| 包类型: |
jar |
| 标题: |
Scheduler |
| 描述: |
A clock-based ExecutorService using Java 8 Time. For when Quartz is just too heavy. |
| 相关URL: |
https://github.com/ajlane/scheduler |
| 大小: |
28.12KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>au.id.ajlane.scheduler</groupId>
<artifactId>scheduler</artifactId>
<version>0.0.1</version>
</dependency>
|
| Gradle引入代码: |
au.id.ajlane.scheduler:scheduler:0.0.1
|
| 下载Jar包: |
|
| POM文件内容: |
<?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>au.id.ajlane.scheduler</groupId>
<artifactId>scheduler</artifactId>
<version>0.0.1</version>
<name>Scheduler</name>
<description>A clock-based ExecutorService using Java 8 Time. For when Quartz is just too heavy.</description>
<url>https://github.com/ajlane/scheduler</url>
<developers>
<developer>
<name>Aaron Lane</name>
<organizationUrl>http://www.ajlane.id.au</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/ajlane/scheduler</url>
<connection>scm:git:git://github.com/ajlane/scheduler.git</connection>
<developerConnection>scm:git:git@github.com:ajlane/scheduler.git</developerConnection>
<tag>scheduler-0.0.1</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
au.id.ajlane.concurrent.CalendarExecutorService.class
au.id.ajlane.concurrent.CalendarFuture.class
au.id.ajlane.concurrent.DelayBasedCalendarExecutorService$1.class
au.id.ajlane.concurrent.DelayBasedCalendarExecutorService$2.class
au.id.ajlane.concurrent.DelayBasedCalendarExecutorService$WrappedCompletableCalendarFuture.class
au.id.ajlane.concurrent.DelayBasedCalendarExecutorService.class
au.id.ajlane.concurrent.MultipleExecutionException.class
au.id.ajlane.concurrent.ScheduleCallback.class
au.id.ajlane.concurrent.SchedulingAdjusters$1.class
au.id.ajlane.concurrent.SchedulingAdjusters$2.class
au.id.ajlane.concurrent.SchedulingAdjusters.class
au.id.ajlane.concurrent.TimeUnits$1.class
au.id.ajlane.concurrent.TimeUnits.class
au.id.ajlane.time.TestClock.class
META-INF/maven/au.id.ajlane.scheduler/scheduler/pom.xml
META-INF/maven/au.id.ajlane.scheduler/scheduler/pom.properties
|
| 依赖Jar: |
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
|