File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ plugins {
8
8
kotlin(" plugin.serialization" ) version " 1.3.50"
9
9
id(" com.diffplug.gradle.spotless" ) version " 3.25.0"
10
10
id(" com.moowork.node" ) version " 1.3.1"
11
+ id(" org.jetbrains.dokka" ) version " 0.10.0"
11
12
}
12
13
13
14
group = " com.adamratzman"
@@ -108,6 +109,8 @@ tasks.named<Test>("jvmTest") {
108
109
useJUnitPlatform()
109
110
}
110
111
112
+
113
+
111
114
spotless {
112
115
kotlin {
113
116
target(" **/*.kt" )
@@ -197,3 +200,10 @@ gradle.taskGraph.whenReady {
197
200
console.printf(" \n Thanks.\n\n " )
198
201
}
199
202
}
203
+
204
+ tasks {
205
+ val dokka by getting(DokkaTask ::class ) {
206
+ outputFormat = " html"
207
+ outputDirectory = " /docs"
208
+ }
209
+ }
Original file line number Diff line number Diff line change @@ -23,3 +23,4 @@ pluginManagement {
23
23
enableFeaturePreview(' GRADLE_METADATA' )
24
24
25
25
rootProject. name = ' spotify-web-api-kotlin'
26
+
You can’t perform that action at this time.
0 commit comments