Repository: geode Updated Branches: refs/heads/develop 456ee1576 -> f9099df50
GEODE-2964: add common-collections to gfsh dependencies Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/f9099df5 Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/f9099df5 Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/f9099df5 Branch: refs/heads/develop Commit: f9099df50ae061a158a00f1c3a69327bbf583d1a Parents: 456ee15 Author: Jinmei Liao <[email protected]> Authored: Tue May 23 14:57:19 2017 -0700 Committer: Jinmei Liao <[email protected]> Committed: Tue May 23 16:37:24 2017 -0700 ---------------------------------------------------------------------- geode-assembly/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/f9099df5/geode-assembly/build.gradle ---------------------------------------------------------------------- diff --git a/geode-assembly/build.gradle b/geode-assembly/build.gradle index a4f0c69..c308d30 100755 --- a/geode-assembly/build.gradle +++ b/geode-assembly/build.gradle @@ -131,12 +131,13 @@ def cp = { .join(' ') // then add all the dependencies of the dependent jars - jars += ' ' + configurations.archives.dependencies.collect { + jars += ' ' + configurations.archives.dependencies.collect { it.dependencyProject.findAll { !(it.name.contains('web-api') || it.name.contains('pulse')) } .collect { it.configurations.runtime.collect { it.getName() }.findAll { // depedencies from geode-core it.contains('antlr') || it.contains('commons-io') || + it.contains('commons-collections') || it.contains('commons-lang') || it.contains('commons-logging') || it.contains('fast-classpath-scanner') ||
