forked from mycelium-com/wallet-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (32 loc) · 1.18 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
apply plugin: 'java'
apply plugin: 'kotlin'
repositories {
google()
jcenter()
}
dependencies {
implementation project(includePrefix + ':bitlib')
implementation project(includePrefix + ':mbwlib')
implementation project(includePrefix + ':walletmodel')
testImplementation "junit:junit:$junitVersion"
testImplementation "org.mockito:mockito-core:2.23.0"
implementation "com.fasterxml.jackson.core:jackson-annotations:$jacksonAnnotationsVersion"
implementation "com.fasterxml.jackson.core:jackson-databind:$jacksonDatabindVersion"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinCoroutinesVersion"
implementation "com.squareup.okhttp:okhttp:$okhttpVersion"
implementation "com.google.guava:guava:$rootProject.guavaVersion"
implementation "com.google.code.findbugs:annotations:$findBugsVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "com.google.code.gson:gson:$gsonVersion"
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
kapt {
useBuildCache = true
}