This is an automated email from the ASF dual-hosted git repository.
kenn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new a88bf8e Add SonarQube analysis for Java projects (#7463)
a88bf8e is described below
commit a88bf8eaafbb83fa396632a9e3e8a3b8ead05e14
Author: Mikhail Gryzykhin <[email protected]>
AuthorDate: Wed Feb 27 12:26:28 2019 -0800
Add SonarQube analysis for Java projects (#7463)
---
.test-infra/jenkins/job_sonarqube_report.groovy | 53 ++++++++++++++++++++++
build.gradle | 1 +
.../org/apache/beam/gradle/BeamModulePlugin.groovy | 3 ++
3 files changed, 57 insertions(+)
diff --git a/.test-infra/jenkins/job_sonarqube_report.groovy
b/.test-infra/jenkins/job_sonarqube_report.groovy
new file mode 100644
index 0000000..9291a4b
--- /dev/null
+++ b/.test-infra/jenkins/job_sonarqube_report.groovy
@@ -0,0 +1,53 @@
+/* * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import CommonJobProperties as commonJobProperties
+
+job('beam_sonarqube_report') {
+ commonJobProperties.setTopLevelMainJobProperties(
+ delegate, 'master', 120,
+ true)
+
+ /**
+ * https://issues.jenkins-ci.org/browse/JENKINS-42741
+ */
+ wrappers {
+ withSonarQubeEnv {
+ installationName('ASF Sonar Analysis')
+ }
+ }
+
+ commonJobProperties.setAutoJob delegate
+
+ publishers {
+ archiveJunit('**/build/test-results/**/*.xml')
+ }
+
+ steps {
+ gradle {
+ rootBuildScriptDir(commonJobProperties.checkoutDir)
+ tasks("test")
+ tasks("jacocoTestReport")
+ tasks("sonarqube")
+ switches("--continue")
+ switches("-PdisableSpotlessCheck=true")
+
+ // disable parallelization to avoid output collisions
+ switches("--no-parallel")
+ }
+ }
+}
diff --git a/build.gradle b/build.gradle
index 7a6a43f..4c47a26 100644
--- a/build.gradle
+++ b/build.gradle
@@ -30,6 +30,7 @@ plugins {
// Enable gradle-based release management
id 'net.researchgate.release' version '2.6.0'
id 'org.apache.beam.module'
+ id "org.sonarqube" version "2.7"
}
// Add performanceTest task to this build.gradle file
diff --git
a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
index 3a92f60..b64893b 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -730,6 +730,9 @@ class BeamModulePlugin implements Plugin<Project> {
project.apply plugin: 'propdeps-maven'
project.apply plugin: 'propdeps-idea'
+ // Defines Targets for sonarqube analysis reporting.
+ project.apply plugin: "org.sonarqube"
+
// Configures a checkstyle plugin enforcing a set of rules and also
allows for a set of
// suppressions.
project.apply plugin: 'checkstyle'