samples: Use built from sources gradle plugin by default.

This commit is contained in:
Ilya Matveev
2017-05-30 18:44:55 +07:00
committed by ilmat192
parent e06e465de0
commit 8acd02dfee
3 changed files with 12 additions and 7 deletions
+2 -7
View File
@@ -370,15 +370,10 @@ task bundle(type: Tar) {
include 'RELEASE_NOTES.md'
include 'GRADLE_PLUGIN.md'
exclude '**/gradle.properties'
exclude '**/settings.gradle'
exclude '**/build'
exclude '**/.gradle'
rename { String fileName ->
if (fileName == "gradle.properties.for_bundle") {
return "gradle.properties"
} else {
return fileName
}
}
rename('(.*)\\.for_bundle', '$1')
into baseName
}
destinationDir = file('.')