Search Gradle plugins

Version 1.0.146

1.0.146

Created 28 June 2019.

Plugin that executes SonarLint checks without SonarQube server. Min Gradle version: 4.5.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.sonarlint") version "1.0.146"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal:gradle-plugins:1.0.146")
      }
    }
    
    apply(plugin = "name.remal.sonarlint")
  • Applying plugins to all subprojects .