Search Gradle plugins

Version 0.0.3

Created 30 September 2020.

Drag some of the things NPM gives by default into Java land.

Using the plugins DSL:

plugins {
  id("com.geoffgranum.another-fine-build") version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.geoffgranum:another-fine-build:0.0.3")
  }
}

apply(plugin = "com.geoffgranum.another-fine-build")

Using the plugins DSL:

plugins {
  id "com.geoffgranum.another-fine-build" version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.geoffgranum:another-fine-build:0.0.3"
  }
}

apply plugin: "com.geoffgranum.another-fine-build"

Learn how to apply plugins to subprojects