Search Gradle plugins

com.fetherbrik.another-fine-build

Drag some of the things NPM gives by default into Java land. Version increment targets, Docker build and push targets.

https://github.com/ggranum/another-fine-build/

Sources: https://github.com/ggranum/another-fine-build/

Version 0.0.16 (latest)

Created 21 July 2021.


Drag some of the things NPM gives by default into Java land.
Version increment targets, Docker build and push targets.

Using the plugins DSL:

plugins {
  id("com.fetherbrik.another-fine-build") version "0.0.16"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.fetherbrik.another-fine-build" version "0.0.16"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects