Search Gradle plugins

com.mooltiverse.oss.nyx

The Nyx Gradle plugin automates the sematic release process for Gradle projects using semantic versioning and leveraging the Git branching model.

https://github.com/mooltiverse/nyx

Sources: https://github.com/mooltiverse/nyx.git

Version 2.5.1-alpha.1

2.5.1-alpha.1

Created 31 August 2023.

The Nyx Gradle plugin automates the sematic release process for Gradle projects using semantic versioning and leveraging the Git branching model.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.mooltiverse.oss.nyx") version "2.5.1-alpha.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.mooltiverse.oss.nyx:gradle:2.5.1-alpha.1")
      }
    }
    
    apply(plugin = "com.mooltiverse.oss.nyx")
  • Applying plugins to all subprojects .