-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
35 lines (27 loc) · 1.41 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
group 'win.vimoo'
version '1.0'
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.10.0'
// https://mvnrepository.com/artifact/com.alibaba/fastjson
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.47'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.9.5'
// https://mvnrepository.com/artifact/org.apache.curator/curator-client
//compile group: 'org.apache.curator', name: 'curator-recipes', version: '4.0.1'
// https://mvnrepository.com/artifact/org.apache.kafka/kafka-clients
compile group: 'org.apache.kafka', name: 'kafka-clients', version: '1.1.0'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
//compile group: 'org.slf4j', name: 'slf4j-api', version: '1.8.0-beta2'
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
// https://mvnrepository.com/artifact/com.typesafe.akka/akka-actor
compile group: 'com.typesafe.akka', name: 'akka-actor_2.12', version: '2.5.13'
}