Search Gradle plugins

Version 0.0.1 (latest)

Created 29 June 2021.

Execute SonarLint analysis locally with Standalone or SonarQube profiles

Using the plugins DSL:

plugins {
  id("com.github.pgollangi.sonarlint") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.pgollangi.sonarlint:sonarlint-plugin:0.0.1")
  }
}

apply(plugin = "com.github.pgollangi.sonarlint")

Using the plugins DSL:

plugins {
  id "com.github.pgollangi.sonarlint" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.pgollangi.sonarlint:sonarlint-plugin:0.0.1"
  }
}

apply plugin: "com.github.pgollangi.sonarlint"

Learn how to apply plugins to subprojects