Skip to content

Commit

Permalink
re-add sonarqube plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Charismara committed Jan 2, 2024
1 parent 5f7f069 commit a690e56
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ architectury {
}

subprojects {
apply plugin: "dev.architectury.loom"
apply plugin: "io.freefair.lombok"
apply {
plugin("dev.architectury.loom")
plugin("io.freefair.lombok")
}

loom {
silentMojangMappingsLicense()
Expand All @@ -32,10 +34,11 @@ subprojects {
}

allprojects {
apply plugin: "java"
apply plugin: "architectury-plugin"
apply plugin: "maven-publish"
apply plugin: "org.sonarqube"
apply {
plugin("java")
plugin("architectury-plugin")
plugin("maven-publish")
}

archivesBaseName = rootProject.archives_base_name
version = rootProject.mod_version
Expand Down Expand Up @@ -85,8 +88,10 @@ allprojects {
}
}
}
}

sonar {
sonar {
properties {
property "sonar.projectKey", "ManasMods_ManasCore"
property "sonar.organization", "manasmods"
property "sonar.host.url", "https://sonarcloud.io"
Expand Down

0 comments on commit a690e56

Please sign in to comment.