Revert "Gradle plugin: fix --include-build workflow"

This reverts commit fce134ee56.
This commit is contained in:
Nikolay Igotti
2017-05-24 19:32:25 +03:00
parent fce134ee56
commit 772e8a33ae
11 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -25,4 +25,4 @@ include ':runtime'
include ':common'
include ':backend.native:tests'
include ':tools:helpers'
include ':tools:kotlin-native-gradle-plugin'
include ':tools:gradle-plugin'
@@ -20,9 +20,6 @@ apply plugin: 'kotlin'
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.bintray'
group = 'org.jetbrains.kotlin'
version = konanVersion
// TODO: move this code to top level (the same for backend.native)
// Copied from backend.native
allprojects {
@@ -83,6 +80,9 @@ publishing {
publications {
gradlePlugin(MavenPublication) {
artifact jar
groupId 'org.jetbrains.kotlin'
artifactId 'kotlin-native-gradle-plugin'
version konanVersion
pom.withXml { XmlProvider xml ->
def stdlibDep = xml.asNode().appendNode("dependencies").appendNode("dependency")
stdlibDep.appendNode("groupId", "org.jetbrains.kotlin")
@@ -111,4 +111,4 @@ bintray {
override = project.hasProperty("override")
}
publications = ['gradlePlugin']
}
}