Skip to content
Snippets Groups Projects
Commit a3b8b724 authored by Benedikt Wetzel's avatar Benedikt Wetzel
Browse files

fix gradle.build and dockerfile

parent 3b86716c
No related branches found
No related tags found
1 merge request!1Add Implementations of Use Cases
FROM openjdk:11-slim FROM openjdk:11-slim
ADD build/distributions/exp-bigdata19-bridge.tar / ADD build/distributions/uc1-application.tar /
CMD export JAVA_OPTS=-Dorg.slf4j.simpleLogger.defaultLogLevel=$LOG_LEVEL \ CMD export JAVA_OPTS=-Dorg.slf4j.simpleLogger.defaultLogLevel=$LOG_LEVEL \
&& /exp-bigdata19-bridge/bin/exp-bigdata19-bridge && /uc1-application/bin/uc1-application
\ No newline at end of file \ No newline at end of file
...@@ -21,7 +21,7 @@ dependencies { ...@@ -21,7 +21,7 @@ dependencies {
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'
} }
mainClassName = "titan.ccp.kiekerbridge.expbigdata19.ExperimentorBigData" mainClassName = "uc1.application.HistoryService"
eclipse { eclipse {
classpath { classpath {
......
...@@ -32,6 +32,7 @@ public class HistoryService { ...@@ -32,6 +32,7 @@ public class HistoryService {
* *
*/ */
private void createKafkaStreamsApplication() { private void createKafkaStreamsApplication() {
final KafkaStreams kafkaStreams = new KafkaStreamsBuilder() final KafkaStreams kafkaStreams = new KafkaStreamsBuilder()
.bootstrapServers(this.config.getString(ConfigurationKeys.KAFKA_BOOTSTRAP_SERVERS)) .bootstrapServers(this.config.getString(ConfigurationKeys.KAFKA_BOOTSTRAP_SERVERS))
.inputTopic(this.config.getString(ConfigurationKeys.KAFKA_INPUT_TOPIC)) .inputTopic(this.config.getString(ConfigurationKeys.KAFKA_INPUT_TOPIC))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment