Skip to content

Commit

Permalink
Update readme for 0.9.18
Browse files Browse the repository at this point in the history
  • Loading branch information
kamildoleglo authored and semoro committed Mar 19, 2019
1 parent fd2f363 commit 6a1a0fd
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,32 @@ buildscript {
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${dokka_version}"
}
}
repositories {
jcenter()
}
apply plugin: 'org.jetbrains.dokka'
```

or using the new plugins block:

```groovy
plugins {
id 'org.jetbrains.dokka' version '0.9.18'
}
repositories {
jcenter()
}
```

The plugin adds a task named "dokka" to the project.

If you encounter any problems when migrating from older versions of Dokka, please see the [FAQ](https://github.com/Kotlin/dokka/wiki/faq).

Minimal dokka configuration:

```groovy
Expand Down Expand Up @@ -180,7 +195,7 @@ dependencies {
```

#### FAQ
Please see the [FAQ](https://github.com/Kotlin/dokka/wiki/faq).
If you encounter any problems, please see the [FAQ](https://github.com/Kotlin/dokka/wiki/faq).

#### Android

Expand All @@ -192,12 +207,13 @@ buildscript {
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:${dokka_version}"
}
}
repositories {
jcenter()
}
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'org.jetbrains.dokka-android'
Expand Down

0 comments on commit 6a1a0fd

Please sign in to comment.