-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (35 loc) · 952 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
33
34
35
36
37
38
39
40
41
42
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.0"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7"
classpath "org.apache.httpcomponents:httpclient:4.5.2"
}
}
allprojects {
repositories {
mavenCentral()
maven {
url 'https://dl.bintray.com/kotlin/exposed'
}
}
apply plugin: 'java'
apply plugin: 'kotlin'
dependencies {
compile 'org.jetbrains:annotations:15.0'
compile "org.jetbrains.kotlin:kotlin-stdlib:1.2.0"
compile "org.jetbrains.kotlin:kotlin-reflect:1.2.0"
compile "org.jsoup:jsoup:1.11.3"
testCompile 'junit:junit:4.12'
}
compileKotlin {
kotlinOptions {
apiVersion = '1.1'
languageVersion = '1.1'
jvmTarget = '1.8'
}
}
}