-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
29 lines (22 loc) · 902 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
group 'ch.wisv'
version '0.1'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
jar {
baseName = 'toornament-client'
version = '0.1'
}
dependencies {
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.8.7'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.8.7'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.7'
compile 'com.squareup.okhttp3:okhttp:3.6.0'
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile 'com.squareup.okhttp3:mockwebserver:3.6.0'
}