forked from simonschiller/swarmer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
32 lines (27 loc) · 1.4 KB
/
dependencies.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
ext.versions = [
kotlin : '1.2.41',
rxJava : '1.3.8',
jCommander : '1.71',
commander : '0.1.8',
junit : '4.12',
junitPlatform: '1.0.1',
spek : '1.1.5',
assertJ : '3.9.1',
mockito : '2.8.1',
mockitoKotlin: '1.5.0',
]
ext.libraries = [
kotlinStd : "org.jetbrains.kotlin:kotlin-stdlib:$versions.kotlin",
kotlinRuntime : "org.jetbrains.kotlin:kotlin-runtime:$versions.kotlin",
kotlinReflect : "org.jetbrains.kotlin:kotlin-reflect:$versions.kotlin",
rxJava : "io.reactivex:rxjava:$versions.rxJava",
jCommander : "com.beust:jcommander:$versions.jCommander",
commanderOs : "com.gojuno.commander:os:$versions.commander",
commanderAndroid : "com.gojuno.commander:android:$versions.commander",
junit : "junit:junit:$versions.junit",
spek : "org.jetbrains.spek:spek-api:$versions.spek",
spekJunitPlatformEngine: "org.jetbrains.spek:spek-junit-platform-engine:$versions.spek",
assertJ : "org.assertj:assertj-core:$versions.assertJ",
mockito : "org.mockito:mockito-core:$versions.mockito",
mockitoKotlin : "com.nhaarman:mockito-kotlin:$versions.mockitoKotlin"
]