From e7bddb195120e3931915694d3b82f01630909f6a Mon Sep 17 00:00:00 2001 From: Artur Albov Date: Fri, 18 May 2018 19:54:25 +0300 Subject: [PATCH] #92 Pump development guide --- docs/contributing/pump-development.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/contributing/pump-development.md b/docs/contributing/pump-development.md index d08a1456..d85202d4 100644 --- a/docs/contributing/pump-development.md +++ b/docs/contributing/pump-development.md @@ -40,7 +40,7 @@ To start with, create new Gradle submodule with name of your chain in `pumps` mo Example of `pumps/build.gradle` file with your module: -``` +```groovy project(":pumps:common") { apply plugin: "io.spring.dependency-management" @@ -66,9 +66,9 @@ project(":pumps:{your_module_name}") { } ... -``` -Example of `settings.gradle` file: ``` +Example of `settings.gradle` file: +```groovy include "common" include "common-kafka" include "cassandra-service"