plugins { java id("io.freefair.lombok") version "8.6" } val slf4jVersion = "2.0.13" repositories { mavenCentral() } dependencies { implementation("org.slf4j:slf4j-api:$slf4jVersion") implementation(project(":ast")) implementation(project(":core")) implementation(project(":utils")) } java { sourceCompatibility = JavaVersion.VERSION_22 targetCompatibility = JavaVersion.VERSION_22 toolchain { languageVersion = JavaLanguageVersion.of(22) } } tasks.withType { options.compilerArgs.add("--enable-preview") }