Search Gradle plugins

Version 0.0.3

Created 16 October 2018.

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 "0.0.3"
}

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:0.0.3")
  }
}

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

Using the plugins DSL:

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

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:0.0.3"
  }
}

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

Learn how to apply plugins to subprojects