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

Created 09 November 2020.


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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects