Skip to content

Commit

Permalink
lombok
Browse files Browse the repository at this point in the history
  • Loading branch information
Emissions committed Feb 15, 2024
1 parent 4714a03 commit 18b04b3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,18 @@ repositories {
mavenCentral()
}

val junitVersion = "5.9.1"
val lombokVersion = "1.18.30"

dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation(platform("org.junit:junit-bom:$junitVersion"))
testImplementation("org.junit.jupiter:junit-jupiter")

compileOnly("org.projectlombok:lombok:$lombokVersion")
annotationProcessor("org.projectlombok:lombok:$lombokVersion")

testCompileOnly("org.projectlombok:lombok:$lombokVersion")
testAnnotationProcessor("org.projectlombok:lombok:$lombokVersion")
}

var targetJavaVersion = 11
Expand Down

0 comments on commit 18b04b3

Please sign in to comment.