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:
+1
-1
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user