2018-10-06 13:37:12 +02:00
|
|
|
apply from: bootstrap.kotlinModule
|
2017-03-02 06:37:51 +01:00
|
|
|
|
2017-02-21 17:46:24 +01:00
|
|
|
dependencies {
|
2017-08-21 22:08:42 +02:00
|
|
|
api other.retrofit
|
2018-01-07 13:20:59 +01:00
|
|
|
api other.jacksonConverter
|
2018-06-23 22:49:46 +02:00
|
|
|
api other.koinCore
|
|
|
|
|
2017-08-21 22:08:42 +02:00
|
|
|
implementation(other.jacksonKotlin) {
|
2017-08-12 20:17:32 +02:00
|
|
|
exclude module: 'kotlin-reflect'
|
|
|
|
}
|
2017-08-21 22:08:42 +02:00
|
|
|
implementation other.kotlinReflect // for jackson kotlin, but to use the same version
|
|
|
|
implementation other.okhttpLogging
|
2020-09-30 18:17:57 +02:00
|
|
|
implementation other.timber
|
2017-08-21 22:08:42 +02:00
|
|
|
|
|
|
|
testImplementation testing.kotlinJunit
|
2017-12-02 21:21:23 +01:00
|
|
|
testImplementation testing.mockito
|
|
|
|
testImplementation testing.mockitoInline
|
2017-08-21 22:08:42 +02:00
|
|
|
testImplementation testing.mockitoKotlin
|
|
|
|
testImplementation testing.kluent
|
|
|
|
testImplementation testing.mockWebServer
|
|
|
|
testImplementation testing.apacheCodecs
|
2017-08-09 21:56:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
|
|
|
// Excluding data classes
|
|
|
|
jacocoExclude = [
|
2018-06-23 22:49:46 +02:00
|
|
|
'**/models/**',
|
|
|
|
'**/di/**'
|
2017-08-09 21:56:20 +02:00
|
|
|
]
|
|
|
|
}
|