Repository: incubator-gobblin Updated Branches: refs/heads/master 940329e13 -> 106d1ba69
[GOBBLIN-355] Removing gradlew and related jars from source release. Refer: LEGAL-288 Project: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/commit/2951fd26 Tree: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/tree/2951fd26 Diff: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/diff/2951fd26 Branch: refs/heads/master Commit: 2951fd26701c39ac50d6b4aba335de21c82d7831 Parents: bd9bd47 Author: Abhishek Tiwari <[email protected]> Authored: Mon Jan 8 23:53:38 2018 +0530 Committer: Abhishek Tiwari <[email protected]> Committed: Mon Jan 8 23:53:38 2018 +0530 ---------------------------------------------------------------------- gradle/scripts/release.gradle | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-gobblin/blob/2951fd26/gradle/scripts/release.gradle ---------------------------------------------------------------------- diff --git a/gradle/scripts/release.gradle b/gradle/scripts/release.gradle index 4bce1e2..de886bc 100644 --- a/gradle/scripts/release.gradle +++ b/gradle/scripts/release.gradle @@ -58,6 +58,11 @@ task sourceRelease(type: Tar, dependsOn: prepare_release_config) { exclude "gradle.properties" exclude '**/build' exclude '.gradle' + // excluding gradlew and related jar because of: https://issues.apache.org/jira/browse/LEGAL-288 + exclude 'gradlew' + exclude 'gradlew.bat' + exclude 'gradle/wrapper/gradle-wrapper.jar' + exclude 'gradle/wrapper/gradle-wrapper.properties' exclude '.github' exclude 'maven-sonatype' exclude 'travis'
