|
|
@ -1,3 +1,6 @@ |
|
|
|
|
|
|
|
import org.gradle.api.tasks.testing.AbstractTestTask |
|
|
|
|
|
|
|
import org.gradle.api.tasks.testing.logging.TestExceptionFormat |
|
|
|
|
|
|
|
|
|
|
|
val COMPOSE_CORE_VERSION: String by project |
|
|
|
val COMPOSE_CORE_VERSION: String by project |
|
|
|
val COMPOSE_WEB_VERSION: String by project |
|
|
|
val COMPOSE_WEB_VERSION: String by project |
|
|
|
val COMPOSE_REPO_USERNAME: String? by project |
|
|
|
val COMPOSE_REPO_USERNAME: String? by project |
|
|
@ -96,5 +99,14 @@ subprojects { |
|
|
|
} |
|
|
|
} |
|
|
|
google() |
|
|
|
google() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tasks.withType<AbstractTestTask> { |
|
|
|
|
|
|
|
testLogging { |
|
|
|
|
|
|
|
events("FAILED") |
|
|
|
|
|
|
|
exceptionFormat = TestExceptionFormat.FULL |
|
|
|
|
|
|
|
showStandardStreams = true |
|
|
|
|
|
|
|
showStackTraces = true |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|