Search Gradle plugins

Version 1.2.0 (latest)

1.2.0

Created 15 September 2019.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact 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.2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.betomorrow.gradle:xamarin-sonarqube-plugin:1.2.0")
      }
    }
    
    apply(plugin = "com.betomorrow.xamarin.sonarqube")
  • Applying plugins to all subprojects .