-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (36 loc) · 1.05 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
36
37
38
39
40
41
42
43
44
45
46
47
48
apply plugin: 'kotlin'
repositories {
mavenCentral()
}
buildscript {
ext.kotlin_version = '1.2.10'
ext.gson_version = '2.7'
ext.okhttp_version = '3.8.1'
repositories {
mavenCentral()
jcenter()
//google()
}
dependencies {
//classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
dependencies {
compile project (':geojson-kotlin')
compile project (':kimage')
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
// OkHttp
compile "com.squareup.okhttp3:okhttp:$okhttp_version"
compile "com.squareup.okhttp3:logging-interceptor:$okhttp_version"
// Gson
compile "com.google.code.gson:gson:$gson_version"
// SimpleXML
compile "org.simpleframework:simple-xml:2.7.1"
testCompile 'junit:junit:4.12'
}
task copyTestResources(type: Copy) {
from "${projectDir}/src/test/resources"
into "${buildDir}/classes/test"
}
processTestResources.dependsOn copyTestResources