Hello,
Here is my configuration
- Sonarqube version: 7.9.6
- Azure DevOps (SonarQubePrepare@4 & SonarQubeAnalyze@4 tasks used in Azure Pipeline)
- Projects C# & Typescript
I updated yesterday my Sonarqube Developer Edition from 7.9.3 to 7.9.6. Now I have all my builds are failing with the following error
ERROR: Validation of project reactor failed:
o To use the property "sonar.pullrequest.key" and analyze pull requests, Developer Edition or above is required. See https://redirect.sonarsource.com/doc/branches.html for more information.
o To use the property "sonar.pullrequest.branch" and analyze pull requests, Developer Edition or above is required. See https://redirect.sonarsource.com/doc/branches.html for more information.
o To use the property "sonar.pullrequest.base" and analyze pull requests, Developer Edition or above is required. See https://redirect.sonarsource.com/doc/branches.html for more information.
Here is how my SonarQubePrepare@4 task (which was perfectly working with Sonarqube 7.9.3) is configured in Azure Pipelines
- task: SonarQubePrepare@4
displayName: Prepare Sonarqube
inputs:
SonarQube: 'Sonarqube'
scannerMode: 'MSBuild'
projectKey: 'MyApplication'
projectName: 'MyApplication'
extraProperties: |
sonar.cs.opencover.reportsPaths=$(Agent.TempDirectory)/**/coverage.opencover.xml
sonar.cs.vstest.reportsPaths=$(Agent.TempDirectory)/*.trx
Also, I notice that some features are missing now (Pull Requests, Azure DevOps configuration for example) in Administration > Configuration > General Settings
Seems like my Licence was downgraded…
Any help will be appreciated …