update README

This commit is contained in:
InsanusMokrassar 2019-11-19 19:23:35 +06:00
parent af196fa90c
commit e3b1b67bdc

View File

@ -32,23 +32,11 @@ kronScheuler.doWhile {
### Including in project ### Including in project
Here will be presented example for including of `Krontab` as a dependency using `Gradle`. In two words, If you want to include `krontab` in your project, just add next line to your
developers must: dependencies part:
* Add `https://dl.bintray.com/insanusmokrassar/InsanusMokrassar/` address as source of packages
* Add `Krontab` as a dependency
In gradle script it will look like:
```groovy ```groovy
repositories { implementation "com.insanusmokrassar:krontab:$krontab_version"
// ...
maven { url "https://dl.bintray.com/insanusmokrassar/InsanusMokrassar/" }
}
dependencies {
implementation "com.insanusmokrassar:krontab:$krontab_version"
}
``` ```
Next version is the latest currently for the library: Next version is the latest currently for the library:
@ -136,4 +124,3 @@ kronScheduler.doInfinity {
``` ```
All of these examples will do the same things: print `Called` message every five seconds. All of these examples will do the same things: print `Called` message every five seconds.