forked from urgrue/Java-Twitch-Api-Wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
28 lines (21 loc) · 787 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
apply plugin: 'java'
apply plugin: 'maven'
group = 'com.mb3364.twitch'
version = '5.0.0'
description = """Twitch-v5-API-Wrapper"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
maven { url "https://jitpack.io" }
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:'2.4.5'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
compile group: 'com.github.urgrue', name: 'java-async-http', version:'2.1.2'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2'
testCompile group: 'junit', name: 'junit', version:'4.12'
}