Readme.md now contains build directions

This commit is contained in:
Glenn Renfro
2015-06-22 16:40:08 -04:00
committed by Mark Fisher
parent 38a744e915
commit 6ab7c566ad

View File

@@ -105,4 +105,25 @@ spring:
index: 0
```
The `spring.bus.tap` section tells the module runner which topic you want to subscribe to. It creates a new group (a tap can't be in the same group as the one it is tapping) and starts a new index count, in case anyone wants to listen downstream.
The `spring.bus.tap` section tells the module runner which topic you want to subscribe to. It creates a new group (a tap can't be in the same group as the one it is tapping) and starts a new index count, in case anyone wants to listen downstream.
## Build Spring Bus
### Pre-requisites
* Required :
* Java 8
* Maven
Currently the `receptor-client` dependency is not in a public Maven repo. To install it to your local Maven repo, execute the following commands:
```
git clone https://github.com/markfisher/receptor-client.git
cd receptor-client
./gradlew install
```
### Building the project
```
mvn clean install
```