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

Created 05 February 2023.

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

Using the plugins DSL:

plugins {
  id("com.mooltiverse.oss.nyx") version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.mooltiverse.oss.nyx:gradle:2.1.0")
  }
}

apply(plugin = "com.mooltiverse.oss.nyx")

Using the plugins DSL:

plugins {
  id "com.mooltiverse.oss.nyx" version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.mooltiverse.oss.nyx:gradle:2.1.0"
  }
}

apply plugin: "com.mooltiverse.oss.nyx"

Learn how to apply plugins to subprojects