-
Notifications
You must be signed in to change notification settings - Fork 585
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow to pass parameter to sonarqube end
Useful when using SonarQub public server with token. And add simple method for SonarQubeEnd without arguments
- Loading branch information
Jérémie Bertrand
committed
Sep 18, 2016
1 parent
73589a8
commit 688bf33
Showing
3 changed files
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
688bf33
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Latest update is causing errors vs version 4.39.1. Specifically, sonar settings now being flagged as errors:
This setting is not valid the "end" phase in this version of the C# plugin: sonar.log.level
This setting is not valid the "end" phase in this version of the C# plugin: sonar.verbose
This setting is not valid the "end" phase in this version of the C# plugin: sonar.branch
This setting is not valid the "end" phase in this version of the C# plugin: sonar.cs.xunit.reportsPaths
This setting is not valid the "end" phase in this version of the C# plugin: sonar.opencover.reportsPaths
This happens when calling SonarQube end. Will open an issue and will note the issue number...
688bf33
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is because the previous version forced to pass parameters to the end call, even if they were not used.
The only parameter used in the end call is
sonar.login
, you should remove the others.Or use
SonarqubeEnd()
if you haven't the use ofsonar.login
.