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.12

0.0.12

Created 03 February 2021.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.fetherbrik:another-fine-build:0.0.12")
      }
    }
    
    apply(plugin = "com.fetherbrik.another-fine-build")
  • Applying plugins to all subprojects .