-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
66 lines (52 loc) · 1.6 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:5.0.0'
}
}
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.0.0'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
manifest {
attributes 'Main-Class': 'de.hpi.datastreams.apps.ServerAppRunner'
}
sourceCompatibility = 1.8
group = 'de.hpi.datastreams'
version = ''
application {
mainClassName = 'de.hpi.datastreams.apps.ServerAppRunner'
}
repositories {
mavenCentral()
maven {
url "http://packages.confluent.io/maven/"
}
}
dependencies {
compile "org.slf4j:slf4j-simple:1.7.26"
compile "org.apache.kafka:kafka-streams:2.3.1"
compile "org.apache.kafka:kafka-clients:2.3.1"
implementation "org.projectlombok:lombok:1.18.10"
annotationProcessor 'org.projectlombok:lombok:1.18.10'
compile group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names', version : '2.10.0'
compile "io.confluent:monitoring-interceptors:5.3.1"
testCompile "org.apache.kafka:kafka-streams-test-utils:2.3.1"
testCompile "junit:junit:4.12"
compile group: 'org.apache.spark', name: 'spark-mllib_2.12', version: '3.0.0-preview2'
compile group: 'org.apache.spark', name: 'spark-core_2.12', version: '3.0.0-preview2'
compile group: 'org.apache.spark', name: 'spark-sql_2.12', version: '3.0.0-preview2'
}
javafx {
version = "13"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
shadowJar {
zip64 true
}