Remove configuration: default, make transitive dependencies explicit.

This commit is contained in:
akwizgran
2022-12-02 17:43:52 +00:00
parent 9ee8fe74ba
commit c2e71ef52f
14 changed files with 61 additions and 47 deletions

View File

@@ -6,16 +6,17 @@ apply plugin: 'idea'
apply from: '../dagger.gradle'
dependencies {
testImplementation project(path: ':bramble-api', configuration: 'default')
testImplementation project(':bramble-api')
testImplementation project(path: ':bramble-api', configuration: 'testOutput')
testImplementation project(path: ':bramble-core', configuration: 'default')
testImplementation project(':bramble-core')
testImplementation project(path: ':bramble-core', configuration: 'testOutput')
testImplementation project(path: ':mailbox-core', configuration: 'default')
testImplementation project(path: ':mailbox-lib', configuration: 'default')
testImplementation project(':mailbox-core')
testImplementation project(':mailbox-lib')
testImplementation "junit:junit:$junit_version"
testImplementation "ch.qos.logback:logback-classic:1.2.11"
testImplementation 'net.jodah:concurrentunit:0.4.6'
testImplementation "com.squareup.okhttp3:okhttp:$okhttp_version"
testAnnotationProcessor "com.google.dagger:dagger-compiler:$dagger_version"
}