Repository: incubator-gobblin Updated Branches: refs/heads/master 55689d284 -> 3a28721d8
Add gobblin-service-kafka as a runtime dependency of the cluster module This will allow running the cluster from an IDE with configurations that require the Kafka module, e.g. the StreamingJobConfigManager. This will allow running the cluster from an IDE with configurations that require the Kafka module, e.g. the StreamingJobConfigManager. Closes #2179 from HappyRay/make-cluster-module- depend-on-kafka-module Project: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/commit/3a28721d Tree: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/tree/3a28721d Diff: http://git-wip-us.apache.org/repos/asf/incubator-gobblin/diff/3a28721d Branch: refs/heads/master Commit: 3a28721d8c7e3d23630940c0e636b19bd8e5fd2d Parents: 55689d2 Author: Ray Yang <[email protected]> Authored: Wed Nov 29 15:58:12 2017 -0800 Committer: Abhishek Tiwari <[email protected]> Committed: Wed Nov 29 15:58:12 2017 -0800 ---------------------------------------------------------------------- gobblin-cluster/build.gradle | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-gobblin/blob/3a28721d/gobblin-cluster/build.gradle ---------------------------------------------------------------------- diff --git a/gobblin-cluster/build.gradle b/gobblin-cluster/build.gradle index da892aa..0cd8eb8 100644 --- a/gobblin-cluster/build.gradle +++ b/gobblin-cluster/build.gradle @@ -50,6 +50,8 @@ dependencies { compile externalDependency.findBugsAnnotations compile externalDependency.helix + runtime project(":gobblin-modules:gobblin-service-kafka") + testCompile project(":gobblin-example") testCompile externalDependency.testng
