com.mooltiverse.oss.nyx
Owner: Mooltiverse Root
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 3.0.6
3.0.6
Created 03 September 2024.
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 "3.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.mooltiverse.oss.nyx:gradle:3.0.6")
}
}
apply(plugin = "com.mooltiverse.oss.nyx")
Using the plugins DSL:
plugins {
id "com.mooltiverse.oss.nyx" version "3.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.mooltiverse.oss.nyx:gradle:3.0.6"
}
}
apply plugin: "com.mooltiverse.oss.nyx"