forked from jwhall33/ddos-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (22 loc) · 999 Bytes
/
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
plugins {
id 'java'
id 'war'
}
group 'ddos'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
// compile group: 'org.apache.spark', name: 'spark-core_2.10', version: '1.6.3'
compile group: 'org.apache.spark', name: 'spark-core_2.10', version: '2.2.3'
// providedCompile group: 'org.apache.spark', name: 'spark-streaming_2.10', version: '1.6.3'
providedCompile group: 'org.apache.spark', name: 'spark-streaming_2.10', version: '2.2.3'
// compile group: 'org.apache.spark', name: 'spark-streaming-kafka_2.10', version: '1.6.3'
compile group: 'org.apache.spark', name: 'spark-streaming-kafka-0-10_2.10', version: '2.0.0'
compile group: 'org.apache.kafka', name: 'kafka_2.10', version: '0.10.2.2'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.28'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
testCompile group: 'junit', name: 'junit', version: '4.12'
}