Search Gradle plugins

Version 1.1 (latest)

Created 14 November 2023.

Changes:
- Support for the configuration cache

Using the plugins DSL:

plugins {
  id("io.github.bjornvester.codenarcprinter") version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.bjornvester.codenarcprinter:plugin:1.1")
  }
}

apply(plugin = "io.github.bjornvester.codenarcprinter")

Using the plugins DSL:

plugins {
  id "io.github.bjornvester.codenarcprinter" version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.bjornvester.codenarcprinter:plugin:1.1"
  }
}

apply plugin: "io.github.bjornvester.codenarcprinter"

Learn how to apply plugins to subprojects