Search Gradle plugins

Version 1.0.4

Created 21 April 2019.

A small set of tasks for checking file style for all files and for checking code style of Gradle's code

Using the plugins DSL:

plugins {
  id("all.shared.gradle.project-style-checker") version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.all.shared.gradle.project-style-checker:project-style-checker:1.0.4")
  }
}

apply(plugin = "all.shared.gradle.project-style-checker")

Using the plugins DSL:

plugins {
  id "all.shared.gradle.project-style-checker" version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.all.shared.gradle.project-style-checker:project-style-checker:1.0.4"
  }
}

apply plugin: "all.shared.gradle.project-style-checker"

Learn how to apply plugins to subprojects