From 820ef588ae41aa9470f05cce7f1c3987ae52783e Mon Sep 17 00:00:00 2001 From: Nikolay Igotti Date: Wed, 9 Oct 2019 22:23:33 +0300 Subject: [PATCH] Revert "Build: Publish backend.native.jar to a local repo" This reverts commit d886986b96b7a11476c56fb6d0e1c5936833ffc9. It breaks CLI launcher. --- backend.native/build.gradle | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/backend.native/build.gradle b/backend.native/build.gradle index 095f19e383e..fcd2db0dd78 100644 --- a/backend.native/build.gradle +++ b/backend.native/build.gradle @@ -19,10 +19,6 @@ apply plugin: "com.google.protobuf" apply plugin: 'java' apply plugin: 'kotlin' apply plugin: org.jetbrains.kotlin.NativeInteropPlugin -apply plugin: "maven-publish" - -group = 'org.jetbrains.kotlin' -version = konanVersionFull // (gets applied to this project and all its subprojects) allprojects { @@ -293,15 +289,3 @@ task debugCompiler(type: JavaExec) { enableAssertions = true args = findProperty("konan.debug.args").toString().tokenize() ?: [] } - -publishing { - repositories { - maven { url = "$buildDir/repo" } - } - - publications { - maven(MavenPublication) { - from components.java - } - } -}