Skip to content

Including in project

In two words, you must add dependency dev.inmo:krontab:$krontab_version to your project. The latest version presented by next badge:

Maven Central

Notice about repository

To use this library, you will need to include MavenCentral repository in you project

build.gradle
mavenCentral()

Dependencies

Next snippets must be placed into your dependencies part of build.gradle (for gradle) or pom.xml (for maven).

Gradle

implementation "dev.inmo:krontab:$krontab_version"

Maven

<dependency>
    <groupId>dev.inmo</groupId>
    <artifactId>krontab</artifactId>
    <version>${krontab_version}</version>
</dependency>