Gradle plugin: fix --include-build workflow

By convention, gradle uses project name as artifactId, `project.group`
property for groupId and `project.version` for version.

This commit switches to this convention instead of configuring
publication tasks directly. It allows to easily substitute published
plugin with a plugin build locally by issuing

`./gradlew build --include-build ../kotlin-native`

in the dependent project.
This commit is contained in:
Ilya Matveev
2017-05-25 11:20:32 +07:00
committed by ilmat192
parent 7997b4f362
commit 862c68b5c5
14 changed files with 9 additions and 15 deletions
+1 -1
View File
@@ -287,7 +287,7 @@ targetList.each { target ->
}
task dist {
dependsOn 'distCompiler', 'distRuntime', ':tools:gradle-plugin:dist'
dependsOn 'distCompiler', 'distRuntime', ':tools:kotlin-native-gradle-plugin:dist'
}
task crossDist {