blob: 08e9b33df4a97256ad7d3ff1bba61ed12e70bed6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
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<JavaCompile> {
options.compilerArgs.add("--enable-preview")
}
|