com.github.pgollangi.sonarlint
Owner:
Prasanna Kumar Gollangi
Execute SonarLint analysis locally with Standalone or SonarQube profiles
https://pgollangi.github.io/gradle-sonarlint
Sources: https://github.com/pgollangi/gradle-sonarlint
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"