This recipe sets the project to use Kafka streams in the Treu application project.
Setting up the project
Getting ready
The project generated in the first four chapters is needed.
How to do it...
- Open the build.gradle file on the Treu project generated in Chapter 4, Message Enrichment, and add these lines:
apply plugin: 'java' apply plugin: 'application' sourceCompatibility = '1.8' mainClassName = 'treu.StreamingApp' repositories { mavenCentral() } version = '0.1.0' dependencies { compile...