fixed typo in build.gradle
SonarQube Analysis / Build and Analyze (pull_request) Failing after 1m42s

This commit is contained in:
2026-06-25 20:43:19 +02:00
parent 5c58fe43d9
commit 77ee6f68c6
+3 -3
View File
@@ -2,7 +2,7 @@ plugins {
java java
id("org.springframework.boot") version "4.1.0" id("org.springframework.boot") version "4.1.0"
id("io.spring.dependency-management") version "1.1.7" id("io.spring.dependency-management") version "1.1.7"
id "org.sonarqube" version "7.3.0.8198" id("org.sonarqube") version "7.3.0.8198"
} }
group = "com.vaessl" group = "com.vaessl"
@@ -16,8 +16,8 @@ java {
sonar { sonar {
properties { properties {
property "sonar.projectKey", "Vaessl" property("sonar.projectKey", "Vaessl")
property "sonar.projectName", "Vaessl" property("sonar.projectName", "Vaessl")
} }
} }