sonarqube5.1

SonarQube - Views Portfolio Plugin - Project vs Filter Motion Chart

十年热恋 提交于 2019-12-12 02:12:37
问题 I completed a POC on View Portfolio plugin using SonarQube (5.1.x)/latest version. Got my trial license for Views Portfolio plugin and created few custom VIEWS, Sub-Views and various Measures. Created custom/shared Dashboards which have various widgets utilizing these views/sub-views / measures that I created above. Everything is working as expected as far as Views Portfolio Plugin or Sonar Qube is concerned. Though I'm bumped by this one issue which is coming in " Project Motion Chart "

Trying to install sonarqube on linux machine but getting error

泄露秘密 提交于 2019-12-11 23:03:30
问题 I am trying to install sonarqube-5.1 on Linux x86_64 and I did below steps 1: sudo wget http://downloads.sonarsource.com/sonarqube/sonarqube-5.1.zip 2: unzip sonarqube-5.1.zip 3: sudo mv sonarqube-5.1 /usr/local/ 4: sudo /usr/local/sonar/bin/linux-x86-64/sonar.sh start output Starting SonarQube... Started SonarQube. But when I am trying to open http://my_local_IP:9000 Then It is giving below error Unable to connect Firefox can't establish a connection to the server at my_local_IP:9000. The

Does continuous inspection still work with Sonar 5.1.X?

我们两清 提交于 2019-12-11 20:56:09
问题 I'm trying to run a preview analysis for a (Java) project of ours with SonarQube 5.1.1. I am able to get a local report generated, however I get no coverage data, and I also get the message [INFO] [XX:YY:ZZ.ZZZ] Build Breaker plugin is no more supported in preview/incremental mode . If I check here, the page says that Starting with SonarQube 5.1, the Build Breaker plugin does not work any longer in the preview & incremental modes. . I'm confused - I thought that for continuous inspection one

Sonarqube 5.1 core auto assign feature not working

大兔子大兔子 提交于 2019-12-11 11:43:24
问题 I've heard that issue assign plugin is not needed in sonarqube 5.1 since its built in. But whenever I committed through SVN and run sonar through jenkins all of the team gets an email saying there is an issue but issues are not assigned to the last committer or to anybody. But when I view the code through sonar I can see it displays the committed persons name in-front of it. Therefore I think that the issue is not with SVN connection or user name identificaiton. (We use same usernames to log

VSSonarExtention - why connect to the server?

江枫思渺然 提交于 2019-12-11 10:45:59
问题 Just installed and started using VSSonarExtension, but already have a couple of questions that I am unable to answer myself: Why does the extension need to connect to the server if it scans local code with local tools, such as FxCop and StyleCop? After looking through roughly 15 files, I get an error saying that I need a license to scan more than 15 files in one session - isn't the extension open source? I want to make sure that the rules specified on the server match the rules locally, so

Build failure due to Sonar plugin

自古美人都是妖i 提交于 2019-12-11 10:25:17
问题 My build keeps failing on Jenkins because of this error: ERROR: Error during Sonar runner execution org.sonar.runner.impl.RunnerException: Unable to execute Sonar at org.sonar.runner.impl.BatchLauncher$1.delegateExecution(BatchLauncher.java:91) at org.sonar.runner.impl.BatchLauncher$1.run(BatchLauncher.java:75) at java.security.AccessController.doPrivileged(Native Method) at org.sonar.runner.impl.BatchLauncher.doExecute(BatchLauncher.java:69) at org.sonar.runner.impl.BatchLauncher.execute

sonarqube 5.x differential views KO (JSON parsing exception)

杀马特。学长 韩版系。学妹 提交于 2019-12-10 12:20:02
问题 In SONARQUBE console when I try to use differential views for my project (combo box -> “since previous analysis” or “over 30 days”) and I ask to see only the difference (new adds) I get a popup error “Fail to execute ES search request”. The problem is the JSON generated who is no JSON compliant : "pre_zone":"GMT+01:00" See the java logs below : Caused by: org.elasticsearch.action.search.SearchPhaseExecutionException: Failed to execute phase [query], all shards failed; shardFailures {[Ke

WARN web[o.s.s.n.NotificationService] Unable to deliver notification

≯℡__Kan透↙ 提交于 2019-12-09 19:05:04
问题 I did get this error when I've upgraded from 5.0 to 5.1. It was related to https://jira.codehaus.org/browse/SONAR-4778. See http://sonarqube.15.x6.nabble.com/WARN-web-o-s-s-n-NotificationService-Unable-to-deliver-notification-td5035238.html for details. It was a bug and it was supposed to be fixed in 5.1.1 with https://jira.codehaus.org/browse/SONAR-6566 as Simon Brandhof stated. Now I've upgraded to 5.1.1 and I'm still having the same problem. 2015.06.09 09:52:48 WARN web[o.s.s.n

How to use the Build Breaker on sonarqube 5.1+ if a project quality gate fails

风流意气都作罢 提交于 2019-12-09 18:36:09
问题 I am using Jenkins Continuous Integration server and Sonarqube for code coverage. I want to make sure that if the issues in the project reach a threshold value of Quality Gate , the project build should fail. I have installed Build Breaker plugin in Sonarqube . I read somewhere that it applies on each and every project by default and sends build failed report to CI server(Jenkins in my case). But this is not happening. My project builds are successful on CI server even if the issues have

How to exclude/ignore referenced project(s) analysis from SonarQube

回眸只為那壹抹淺笑 提交于 2019-12-08 09:35:24
问题 I have a solution which has three projects (X,Y,Z). Z referenced in Y , Y in X . When I start Analysis with MSBuild SonarQube Runner on project X, it is analyzing Y and Z as well. Do we have any solution for ignoring recursive analysis ? Note: I can not breakup solution file into multiple solution files & refer dll's rather than projects. 回答1: you can add the tag into ProjectReference 'Y' of your project 'X' configuration. <PropertyGroup Condition=" $(ProjectGuid) != '' AND $(SonarQubeExclude