gradle-plugin: Add dist target

This commit is contained in:
Ilya Matveev
2017-05-12 14:18:27 +07:00
committed by ilmat192
parent 50ba283aaa
commit 8ee788e6b5
2 changed files with 16 additions and 2 deletions
+2 -2
View File
@@ -252,11 +252,11 @@ task cross_dist_runtime(type: Copy) {
}
task dist {
dependsOn 'dist_compiler', 'dist_runtime'
dependsOn 'dist_compiler', 'dist_runtime', ':tools:gradle-plugin:dist'
}
task cross_dist {
dependsOn 'cross_dist_runtime', 'dist_compiler'
dependsOn 'cross_dist_runtime', 'dist'
}
task bundle(type: Tar) {