A simple project intended to demo Kafka and get developers up and running quickly
Note: This project uses Gradle. You must install Gradle(2.5). If you would rather not install Gradle locally you can use the Gradle Wrapper by replacing all refernces to
gradle
withgradlew
.
- Execute
gradle build
- Find the artifact jars in './build/libs/'
- Execute
gradle idea
- Open project folder in Intellij or open the generated .ipr file
Note: If you have any issues in Intellij a good first troubleshooting step is to execute
gradle cleanIdea idea
- Execute
gradle eclipse
- Open the project folder in Eclipse
Note: If you have any issues in Eclipse a good first troubleshooting step is to execute
gradle cleanEclipse eclipse
Note: This guide has only been tested on Mac OS X and may assume tools that are specific to it. If working in another OS substitutes may need to be used but should be available.
- Run
gradle build
...TODO...