-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
31 lines (27 loc) · 1.19 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
dependencies {
androidTestImplementation libs.androidx.app.compat
androidTestImplementation libs.androidx.test.espresso.core
androidTestImplementation libs.androidx.test.ext.junit.ktx
androidTestImplementation libs.androidx.test.rules
androidTestImplementation libs.androidx.test.runner
androidTestImplementation libs.androidx.fragment.testing
androidTestImplementation libs.junit
androidTestImplementation libs.kotlin.stdlib
androidTestImplementation libs.logback.android
androidTestImplementation libs.slf4j
androidTestUtil libs.androidx.test.orchestrator
implementation project(':org.librarysimplified.audiobook.api')
implementation project(':org.librarysimplified.audiobook.manifest_parser.webpub')
implementation project(':org.librarysimplified.audiobook.mocking')
implementation project(':org.librarysimplified.audiobook.open_access')
implementation project(':org.librarysimplified.audiobook.views')
implementation (project(':org.librarysimplified.audiobook.tests')) {
exclude group: 'ch.qos.logback', module: 'logback-classic'
}
}
/*
* Log unit test executions.
*/
tasks.matching {it instanceof Test}.all {
testLogging.events = ["failed", "passed", "skipped"]
}