Revert "Build: Publish backend.native.jar to a local repo"

This reverts commit d886986b96.
It breaks CLI launcher.
This commit is contained in:
Nikolay Igotti
2019-10-09 22:23:33 +03:00
parent 64be2b7fdc
commit 820ef588ae
-16
View File
@@ -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
}
}
}