Skip to content

Commit

Permalink
configure sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
and-mora committed Nov 21, 2024
1 parent 2d4bb8c commit 2200e0d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
id 'io.spring.dependency-management' version '1.1.6'
id 'org.graalvm.buildtools.native' version '0.10.3'
id("org.openapi.generator") version "7.5.0"
id "org.sonarqube" version "6.0.0.5145"
}

group = 'it.gov.pagopa'
Expand Down Expand Up @@ -96,3 +97,17 @@ openApiGenerate {
"zoned-date-time" : "java.time.ZonedDateTime"
])
}

jacocoTestReport {
reports {
xml.enabled true
}
}

sonarqube {
properties {
property 'sonar.host.url', 'https://sonarcloud.io'
property 'sonar.organization', 'TBD'
property 'sonar.projectKey', 'TBD'
}
}

0 comments on commit 2200e0d

Please sign in to comment.