import org.gradle.api.tasks.testing.logging.TestExceptionFormat import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { kotlin("jvm") kotlin("plugin.serialization") version "1.9.24" } repositories { mavenCentral() } dependencies { api("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3") testImplementation("junit:junit:4.13.2") testImplementation("com.google.truth:truth:1.1.2") } java { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 } tasks.withType { kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } } group = "expo.modules" version = "1.0" tasks.withType().configureEach { testLogging { exceptionFormat = TestExceptionFormat.FULL showExceptions = true showCauses = true showStackTraces = true } }