This repository has been archived by the owner on Dec 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
dependencies.gradle
37 lines (32 loc) · 1.78 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
33
34
35
36
37
ext.versions = [
kotlin : '1.1.1',
rxJava : '1.3.0',
jCommander : '1.71',
commander : '0.1.7',
apacheCommonsIo : '2.5',
apacheCommonsLang: '3.5',
gson : '2.8.0',
dexParser : '1.1.0',
junit : '4.12',
junitPlatform : '1.0.0-M4',
spek : '1.1.2',
assertJ : '3.5.2',
]
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",
apacheCommonsIo : "commons-io:commons-io:$versions.apacheCommonsIo",
apacheCommonsLang : "org.apache.commons:commons-lang3:$versions.apacheCommonsLang",
gson : "com.google.code.gson:gson:$versions.gson",
dexParser : "com.linkedin.dextestparser:parser:$versions.dexParser",
junit : "junit:junit:$versions.junit",
spek : "org.jetbrains.spek:spek-api:$versions.spek",
junitPlatformRunner : "org.junit.platform:junit-platform-launcher:$versions.junitPlatform",
spekJunitPlatformEngine: "org.jetbrains.spek:spek-junit-platform-engine:$versions.spek",
assertJ : "org.assertj:assertj-core:$versions.assertJ",
]