summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorEmmanuel Bourg <ebourg@apache.org>2019-03-09 14:46:25 +0000
committerAndrej Shadura <andrewsh@debian.org>2019-03-09 14:46:25 +0000
commite8f211eca17e756dbff96c1fedaea534731e2992 (patch)
tree9af6fd97d6f8fd372922c88a58530e9ec738edb1 /build.gradle
parent0df6195551109927a41f2f87312c5e4b40dc7800 (diff)
Ignore the sonar runner plugin
Forwarded: not-needed Gbp-Pq: Name 0037-ignore-sonar-plugin.patch
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle33
1 files changed, 0 insertions, 33 deletions
diff --git a/build.gradle b/build.gradle
index c201f4e3..28f8c4a2 100644
--- a/build.gradle
+++ b/build.gradle
@@ -10,10 +10,6 @@ buildscript {
}
}
-plugins {
- id "org.sonarqube" version "1.1"
-}
-
ext {
linkHomepage = 'https://projects.spring.io/spring-framework'
linkCi = 'https://build.spring.io/browse/SPR'
@@ -1138,20 +1134,6 @@ project("spring-framework-bom") {
}
}
-sonarqube {
- properties {
- property "sonar.projectName", "Spring Framework"
- property "sonar.profile", "Spring Framework"
- property "sonar.jacoco.reportPath", "${buildDir.name}/jacoco.exec"
- property "sonar.links.homepage", linkHomepage
- property "sonar.links.ci", linkCi
- property "sonar.links.issue", linkIssue
- property "sonar.links.scm", linkScmUrl
- property "sonar.links.scm_dev", linkScmDevConnection
- property "sonar.java.coveragePlugin", "jacoco"
- }
-}
-
configure(rootProject) {
description = "Spring Framework"
@@ -1367,21 +1349,6 @@ configure(rootProject) {
}
-configure([project(':spring-build-src'), project(':spring-framework-bom')]) {
- sonarqube {
- skipProject = true
- }
-}
-
-configure(project(':spring-core')) {
- sonarqube {
- properties {
- property "sonar.exclusions",
- "src/main/java/org/springframework/cglib/**/*,src/main/java/org/springframework/asm/**/*"
- }
- }
-}
-
/*
* Support publication of artifacts versioned by topic branch.
* CI builds supply `-P BRANCH_NAME=<TOPIC>` to gradle at build time.