From 98e9642a1ec74a767cf80c7b2d46218beab51cf6 Mon Sep 17 00:00:00 2001 From: Dmitriy Dolovov Date: Tue, 24 Dec 2019 16:28:52 +0700 Subject: [PATCH] Stop publishing old KLIB reader --- konan/library-reader/build.gradle.kts | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/konan/library-reader/build.gradle.kts b/konan/library-reader/build.gradle.kts index bd6caa6dd61..1657758de3f 100644 --- a/konan/library-reader/build.gradle.kts +++ b/konan/library-reader/build.gradle.kts @@ -1,29 +1,14 @@ -import org.gradle.api.artifacts.maven.Conf2ScopeMappingContainer.COMPILE - plugins { maven kotlin("jvm") id("jps-compatible") } -val mavenCompileScope by configurations.creating { - the() - .conf2ScopeMappings - .addMapping(0, this, COMPILE) -} - -description = "Kotlin/Native deserializer and library reader" - dependencies { - - // Compile-only dependencies are needed for compilation of this module: compileOnly(project(":compiler:frontend")) compileOnly(project(":compiler:frontend.java")) compileOnly(project(":compiler:cli-common")) - // This dependency is necessary to keep the right dependency record inside of POM file: - mavenCompileScope(project(":kotlin-compiler")) - compile(project(":kotlin-native:kotlin-native-utils")) compile(project(":kotlin-util-io")) compile(project(":kotlin-util-klib")) @@ -37,6 +22,4 @@ sourceSets { "test" { projectDefault() } } -publish() - standardPublicJars()