plugins { alias(libs.plugins.detekt) java } buildscript { dependencies { classpath(libs.android.gradle) classpath(libs.kotlin.gradle) } } java { toolchain { languageVersion.set(JavaLanguageVersion.of(libs.versions.java.jdk.get())) } } subprojects { // Configure linting apply() detekt { buildUponDefaultConfig = true ignoreFailures = true config = files("$rootDir/detekt.yaml") basePath = rootDir.absolutePath reports { sarif.enabled = true } } // Configure default Kotlin compiler options tasks.withType { kotlinOptions { jvmTarget = JavaVersion.VERSION_1_8.toString() } } // Configure default Android options plugins.withType { configure { compileOptions { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } } } } tasks.withType { // Ensure Junit emits the full stack trace when a unit test fails through gradle useJUnit() testLogging { events( org.gradle.api.tasks.testing.logging.TestLogEvent.FAILED, org.gradle.api.tasks.testing.logging.TestLogEvent.STANDARD_ERROR, org.gradle.api.tasks.testing.logging.TestLogEvent.SKIPPED ) exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL showExceptions = true showCauses = true showStackTraces = true } }