The build.gradle.kts had an absolute path to a Mac-local JAR with a "codeflash-runtime" comment, causing add_codeflash_dependency to short-circuit on every machine. Removed the line and stale JAR so ensure_runtime handles it correctly at optimization time. Added Gradle 8.12 wrapper so the project builds without requiring system gradle. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 lines
553 B
Text
28 lines
553 B
Text
plugins {
|
|
java
|
|
jacoco
|
|
}
|
|
|
|
group = "com.example"
|
|
version = "1.0.0"
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0")
|
|
testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.0")
|
|
testImplementation("org.xerial:sqlite-jdbc:3.42.0.0")
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|