com.geoffgranum.another-fine-build
Owner: Geoff Granum
Drag some of the things NPM gives by default into Java land.
https://github.com/ggranum/another-fine-build/
Sources: https://github.com/ggranum/another-fine-build/
Version 0.0.10 (latest)
0.0.10
Created 07 October 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.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.geoffgranum:another-fine-build:0.0.10")
}
}
apply(plugin = "com.geoffgranum.another-fine-build")
Using the plugins DSL:
plugins {
id "com.geoffgranum.another-fine-build" version "0.0.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.geoffgranum:another-fine-build:0.0.10"
}
}
apply plugin: "com.geoffgranum.another-fine-build"