1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: Ignore the SonarQube plugin
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/build.gradle
+++ b/build.gradle
@@ -35,7 +35,6 @@
}
}
-plugins { id 'org.sonarqube' version '2.8' apply false }
description = 'ASM, a very small and fast Java bytecode manipulation framework'
@@ -296,13 +295,6 @@
'Implementation-Version': "${version}")
}
- // Apply the SonarQube plugin to monitor the code quality of the project.
- // Use with 'gradlew sonarqube -Dsonar.host.url=https://sonarqube.ow2.org'.
- apply plugin: 'org.sonarqube'
- sonarqube {
- properties { property 'sonar.projectKey', "ASM:${project.name}" }
- }
-
// Add a task to generate a private javadoc and add it as a dependency of the
// 'check' task.
task privateJavadoc(type: Javadoc) {
|