Skip to content
This repository has been archived by the owner on Nov 22, 2020. It is now read-only.

Commit

Permalink
Add dokka for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
GSculerlor committed May 20, 2020
1 parent dfe93db commit a003f57
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -48,7 +48,8 @@ fun main() {
```
Note that `JikanKt` is an object, so it's singleton. So `apply { }` will be applied on every request. If you have to request
to multiple domains, make sure to apply it per-request!
More details on how to use it, you can check test package (yes, I'm too lazy to create docs at this moment teehee)

For documentation, please check [here](https://ganen.moe/jikankt/docs/).

# Release
For latest release or to check the changelogs, please check Release tab.
Expand Down
6 changes: 6 additions & 0 deletions build.gradle.kts
@@ -1,5 +1,6 @@
plugins {
kotlin("jvm") version "1.3.72"
id("org.jetbrains.dokka") version "0.10.1"
maven
}

Expand Down Expand Up @@ -53,4 +54,9 @@ tasks {
test {
useJUnitPlatform()
}

dokka {
outputFormat = "html"
outputDirectory = "$buildDir/dokka"
}
}

0 comments on commit a003f57

Please sign in to comment.