581acaddd3
Bumps [xstream](https://github.com/x-stream/xstream) from 1.4.18 to 1.4.19. - [Release notes](https://github.com/x-stream/xstream/releases) - [Commits](https://github.com/x-stream/xstream/commits) --- updated-dependencies: - dependency-name: com.thoughtworks.xstream:xstream dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
693 B
Groovy
21 lines
693 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'kotlin-allopen'
|
|
apply plugin: 'com.hiya.jacoco-android'
|
|
|
|
apply from: "${project.rootDir}/gradle/android_dependencies.gradle"
|
|
apply from: "${project.rootDir}/gradle/android_module_dependencies.gradle"
|
|
apply from: "${project.rootDir}/gradle/test_dependencies.gradle"
|
|
apply from: "${project.rootDir}/gradle/jacoco_global.gradle"
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
implementation project(':shared')
|
|
//implementation project(':database')
|
|
|
|
implementation('com.thoughtworks.xstream:xstream:1.4.19') {
|
|
exclude group: 'xmlpull', module: 'xmlpull'
|
|
}
|
|
}
|