Repository: incubator-wave
Updated Branches:
  refs/heads/master 2d5773686 -> e650c2d86


Adds Sonar and Jacoco plugins. https://reviews.apache.org/r/41761/


Project: http://git-wip-us.apache.org/repos/asf/incubator-wave/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-wave/commit/e650c2d8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-wave/tree/e650c2d8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-wave/diff/e650c2d8

Branch: refs/heads/master
Commit: e650c2d8614d929fbeef9c3bf4d378e1c31fd43c
Parents: 2d57736
Author: Evan Hughes <[email protected]>
Authored: Tue Dec 29 09:02:47 2015 +0200
Committer: Yuri Zelikov <[email protected]>
Committed: Tue Dec 29 09:02:47 2015 +0200

----------------------------------------------------------------------
 build.gradle      | 2 ++
 wave/build.gradle | 6 +++++-
 2 files changed, 7 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/e650c2d8/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 375434e..a96142d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,11 +6,13 @@ buildscript {
 
 plugins {
     id "org.nosphere.apache.rat" version "0.2.0"
+    id "org.sonarqube" version "1.1"
 }
 
 allprojects {
     apply plugin: 'eclipse';
     apply plugin: 'idea';
+    apply plugin: 'jacoco'
     group = 'apache-wave'
     version = '0.4'
 }

http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/e650c2d8/wave/build.gradle
----------------------------------------------------------------------
diff --git a/wave/build.gradle b/wave/build.gradle
index 9367a11..9d57241 100644
--- a/wave/build.gradle
+++ b/wave/build.gradle
@@ -42,7 +42,11 @@ configurations {
     }
 }
 
-
+sonarqube {
+    properties {
+        property "sonar.exclusions", "src/generated/**/*.java"
+    }
+}
 
 /* Project Dependencies */
 dependencies {

Reply via email to