Skip to content

Latest commit

 

History

History
57 lines (44 loc) · 1.32 KB

File metadata and controls

57 lines (44 loc) · 1.32 KB

Binks

Binks is a simple plugin that validates and creates release tags to launch jar project release pipelines.

Installation

Binks is hosted via JitPack.

Gradle

build.gradle:

plugins {
  id: "com.github.mxenabled.binks" version "3.0.3"
}

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

settings.gradle:

pluginManagement {
  repositories {
    ...
    maven { url "https://jitpack.io" }
  }
}

Usage

./gradlew release

Just run validation on current version

./gradlew release --check-only

Arguments

Arg Description
check-only Skip apply tag and push. Will still do validations
force Skip version existence check and force more tag to current hash
ignore-dirty-tree Don't fail if git tree is dirty
refresh-tags Removes all local tags and fetches tags from origin