@@ -14,9 +14,9 @@ description = "A library for interacting with blocking JDBC drivers using Kotlin
1414plugins {
1515 `maven- publish`
1616 signing
17- kotlin(" jvm" ) version " 1.4.21-2 "
18- id(" com.github.ben-manes.versions" ) version " 0.36 .0"
19- id(" org.jetbrains.dokka" ) version " 0.10.1 "
17+ kotlin(" jvm" ) version " 1.6.10 "
18+ id(" com.github.ben-manes.versions" ) version " 0.39 .0"
19+ id(" org.jetbrains.dokka" ) version " 1.6.0 "
2020}
2121
2222repositories {
@@ -26,11 +26,11 @@ repositories {
2626
2727dependencies {
2828 implementation(kotlin(" stdlib" ))
29- implementation(" com.michael-bull.kotlin-inline-logger:kotlin-inline-logger:1.0.3 " )
30- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4 .2" )
31- testImplementation(" org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4 .2" )
32- testImplementation(" org.junit.jupiter:junit-jupiter:5.7.0 " )
33- testImplementation(" io.mockk:mockk:1.10.5 " )
29+ implementation(" com.michael-bull.kotlin-inline-logger:kotlin-inline-logger:1.0.4 " )
30+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5 .2" )
31+ testImplementation(" org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5 .2" )
32+ testImplementation(" org.junit.jupiter:junit-jupiter:5.8.2 " )
33+ testImplementation(" io.mockk:mockk:1.12.1 " )
3434}
3535
3636tasks.withType<DependencyUpdatesTask > {
@@ -52,17 +52,13 @@ tasks.withType<Test> {
5252 useJUnitPlatform()
5353}
5454
55- val dokka by tasks.existing(DokkaTask ::class ) {
56- outputFormat = " javadoc"
57- outputDirectory = " $buildDir /docs/javadoc"
58- }
55+ val dokkaJavadoc by tasks.existing(DokkaTask ::class )
5956
6057val javadocJar by tasks.registering(Jar ::class ) {
6158 group = LifecycleBasePlugin .BUILD_GROUP
6259 description = " Assembles a jar archive containing the Javadoc API documentation."
6360 archiveClassifier.set(" javadoc" )
64- dependsOn(dokka)
65- from(dokka.get().outputDirectory)
61+ from(dokkaJavadoc)
6662}
6763
6864val sourcesJar by tasks.registering(Jar ::class ) {
0 commit comments