-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
44 lines (35 loc) · 1022 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
43
44
buildscript {
ext {
kotlin_version = '1.2.70'
gson_version = '2.8.5'
junit_version = '4.12'
mockito_version = '2.22.0'
mockito_inline_version = '2.8.9'
mockito_kotlin_version = '2.0.0-RC2'
}
repositories {
mavenCentral()
jcenter()
google()
}
}
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.2.61'
}
group 'au.com.outware'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
google()
}
dependencies {
implementation gradleApi()
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "com.google.code.gson:gson:$gson_version"
testCompile "junit:junit:$junit_version"
testCompile "org.mockito:mockito-core:$mockito_version"
testCompile "com.nhaarman.mockitokotlin2:mockito-kotlin:$mockito_kotlin_version"
testCompile "org.mockito:mockito-inline:$mockito_inline_version"
testCompile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
}