You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2016/09/12 07:31:35 UTC

[4/4] tapestry-5 git commit: remove unused sonar plugin

remove unused sonar plugin


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/a89a969a
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/a89a969a
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/a89a969a

Branch: refs/heads/master
Commit: a89a969a65e12bf36768347bf2210832bd3a6426
Parents: e85e02a
Author: Jochen Kemnade <jo...@eddyson.de>
Authored: Mon Sep 12 09:19:55 2016 +0200
Committer: Jochen Kemnade <jo...@eddyson.de>
Committed: Mon Sep 12 09:31:23 2016 +0200

----------------------------------------------------------------------
 build.gradle | 18 ------------------
 1 file changed, 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/a89a969a/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 5026ab1..c1db6cc 100755
--- a/build.gradle
+++ b/build.gradle
@@ -3,7 +3,6 @@ description = "Apache Tapestry 5 Project"
 import org.apache.tools.ant.filters.ReplaceTokens
 
 apply plugin: "base"
-apply plugin: "sonar"
 
 apply from: "ssh.gradle"
 apply from: "md5.gradle"
@@ -44,11 +43,6 @@ def tapestryVersion() {
 // Let analysis.apache.org get in touch with our builds
 
 project.ext {
-    sonarUrl = System.getProperty("sonarUrl", "https://analysis.apache.org");
-    sonarDbUrl = System.getProperty("sonarDbUrl", "");
-    sonarDbUsername = System.getProperty("sonarDbUsername", "");
-    sonarDbPassword = System.getProperty("sonarDbPassword", "");
-    sonarDbDriverClassName = "com.mysql.jdbc.Driver"
 
     stagingUrl = "https://repository.apache.org/service/local/staging/deploy/maven2/"
     snapshotUrl = "https://repository.apache.org/content/repositories/snapshots"
@@ -71,18 +65,6 @@ project.ext {
     archiveDeployFolder = { getProperty("apacheArchivesFolder") }
 }
 
-sonar {
-    server {
-        url = sonarUrl
-    }
-    database {
-        url = sonarDbUrl
-        driverClassName = sonarDbDriverClassName
-        username = sonarDbUsername
-        password = sonarDbPassword
-    }
-}
-
 allprojects {
 
     apply plugin: "eclipse"