sonar qube
Some checks failed
Build / build (push) Failing after 2m27s

This commit is contained in:
unurled 2024-03-15 15:06:46 +01:00
parent cdf76fb151
commit 6dd20174ad
Signed by: unurled
GPG key ID: FDBC9CBE1F82423F
3 changed files with 10 additions and 7 deletions

View file

@ -2,6 +2,7 @@ plugins {
`java-library`
id("io.papermc.paperweight.userdev") version "1.5.11"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("org.sonarqube") version "4.4.1.3373"
}
group = "me.unurled.sacredrealms"
@ -60,4 +61,10 @@ tasks {
relocate("redis", "libs.redis")
// minimize()
}
sonar {
properties {
property("sonar.projectKey", "Sacred-Realms")
property("sonar.host.url", "https://qube.unurled.me")
}
}
}