com.betomorrow.xamarin.sonarqube
Owner: Gaëtan Marrot
Plugin to execute SonarQuble Scanner for MSBuild in .Net Projects.
https://github.com/gmarrot/xamarin-sonarqube-plugin
Sources: https://github.com/gmarrot/xamarin-sonarqube-plugin
Version 1.0.0
Created 20 July 2019.
Plugin to execute SonarQube Scanner for MSBuild in .Net Projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.betomorrow.xamarin.sonarqube") version "1.0.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.betomorrow.xamarin.sonarqube:com.betomorrow.xamarin.sonarqube.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.betomorrow.xamarin.sonarqube") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.betomorrow.xamarin.sonarqube:com.betomorrow.xamarin.sonarqube.gradle.plugin:1.0.0") } } apply(plugin = "com.betomorrow.xamarin.sonarqube")
- Applying plugins to all subprojects .