diff --git a/build.gradle b/build.gradle index f29ea3a..7b81067 100644 --- a/build.gradle +++ b/build.gradle @@ -37,14 +37,14 @@ compileTestKotlin { } dokka { - outputFormat = 'html' + outputFormat = 'javadoc' outputDirectory = "$buildDir/docs" } -task kdocJar(type: Jar, dependsOn: dokka) { +task javadocJar(type: Jar, dependsOn: dokka) { group = LifecycleBasePlugin.BUILD_GROUP - description = 'Assembles a jar archive containing the KDoc API documentation.' - classifier = 'kdoc' + description = 'Assembles a jar archive containing the Javadoc API documentation.' + classifier = 'javadoc' from dokka.outputDirectory } @@ -59,7 +59,7 @@ publishing { publications { mavenJava(MavenPublication) { from components.java - artifact kdocJar + artifact javadocJar artifact sourcesJar } }