From 77a72be3d13721610823f47b327436131ba75cd6 Mon Sep 17 00:00:00 2001 From: Victor Turansky Date: Sun, 20 Sep 2020 01:49:23 +0300 Subject: [PATCH] Kotlin DSL - 'kotlinx-coroutines-slf4j' --- .../kotlinx-coroutines-slf4j/build.gradle | 17 ----------------- .../kotlinx-coroutines-slf4j/build.gradle.kts | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 17 deletions(-) delete mode 100644 integration/kotlinx-coroutines-slf4j/build.gradle create mode 100644 integration/kotlinx-coroutines-slf4j/build.gradle.kts diff --git a/integration/kotlinx-coroutines-slf4j/build.gradle b/integration/kotlinx-coroutines-slf4j/build.gradle deleted file mode 100644 index 05accb75d3..0000000000 --- a/integration/kotlinx-coroutines-slf4j/build.gradle +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. - */ - -dependencies { - compile 'org.slf4j:slf4j-api:1.7.25' - testCompile 'io.github.microutils:kotlin-logging:1.5.4' - testRuntime 'ch.qos.logback:logback-classic:1.2.3' - testRuntime 'ch.qos.logback:logback-core:1.2.3' -} - -tasks.withType(dokka.getClass()) { - externalDocumentationLink { - packageListUrl = projectDir.toPath().resolve("package.list").toUri().toURL() - url = new URL("https://www.slf4j.org/apidocs/") - } -} diff --git a/integration/kotlinx-coroutines-slf4j/build.gradle.kts b/integration/kotlinx-coroutines-slf4j/build.gradle.kts new file mode 100644 index 0000000000..c7d0d82d62 --- /dev/null +++ b/integration/kotlinx-coroutines-slf4j/build.gradle.kts @@ -0,0 +1,14 @@ +/* + * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */ + +dependencies { + compile("org.slf4j:slf4j-api:1.7.25") + testCompile("io.github.microutils:kotlin-logging:1.5.4") + testRuntime("ch.qos.logback:logback-classic:1.2.3") + testRuntime("ch.qos.logback:logback-core:1.2.3") +} + +externalDocumentationLink( + url = "https://www.slf4j.org/apidocs/" +)