Update build.gradle.kts
All checks were successful
Quality Check / Checkstyle Main (pull_request) Successful in 1m13s
Quality Check / Tests (pull_request) Successful in 1m20s

This commit is contained in:
Jan Gleytenhoover 2024-09-25 14:12:20 +00:00
parent 013e964be6
commit 4529ef9397

@ -3,6 +3,14 @@ plugins {
id("org.springframework.boot") version "3.3.4" id("org.springframework.boot") version "3.3.4"
id("io.spring.dependency-management") version "1.1.6" id("io.spring.dependency-management") version "1.1.6"
id("checkstyle") id("checkstyle")
id("org.sonarqube") version "5.0.0.4638"
}
sonar {
properties {
property("sonar.projectKey", "LF8")
property("sonar.projectName", "LF8")
}
} }
tasks.withType<Checkstyle> { tasks.withType<Checkstyle> {