Updated for Sonarcloud

This commit is contained in:
Geert Bevin 2022-12-31 08:01:36 -05:00
parent 5f4eefc18a
commit 8fc30ed4ad
2 changed files with 38 additions and 5 deletions

View file

@ -2,6 +2,7 @@ plugins {
`java-library`
`maven-publish`
signing
id("org.sonarqube") version "3.5.0.2730"
}
group = "com.uwyn"
@ -18,6 +19,14 @@ java {
}
}
sonarqube {
properties {
property("sonar.projectName", rootProject.name)
property("sonar.projectKey", "gbevin_urlencoder")
property("sonar.organization", "gbevin")
property("sonar.host.url", "https://sonarcloud.io")
}
}
repositories {
mavenCentral()
}