Search Gradle plugins

nebula.lint

Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts

https://github.com/nebula-plugins/gradle-lint-plugin

Sources: https://github.com/nebula-plugins/gradle-lint-plugin.git

Version 20.1.0 (latest)

20.1.0

Created 08 October 2024.

Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts

Using the plugins DSL:

plugins {
  id("nebula.lint") version "20.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:gradle-lint-plugin:20.1.0")
  }
}

apply(plugin = "nebula.lint")

Using the plugins DSL:

plugins {
  id "nebula.lint" version "20.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:gradle-lint-plugin:20.1.0"
  }
}

apply plugin: "nebula.lint"

Learn how to apply plugins to subprojects