plugins { id 'java-library' id 'org.jetbrains.kotlin.jvm' } // Intentionally dependency-free: a pure structural extractor over source bytes, usable by both // core:kernel (over recorded CAS bytes) and apps/server (over the live filesystem) without any // cross-module coupling or filesystem APIs of its own. dependencies { testImplementation "org.junit.jupiter:junit-jupiter" testImplementation "org.jetbrains.kotlin:kotlin-test" } tasks.named("koverVerify").configure { enabled = false }