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

0.0.2

Created 12 October 2020.

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.2"
}

See also:

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