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 2.4.3
2.4.3
Created 01 June 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.4.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.mooltiverse.oss.nyx:gradle:2.4.3")
}
}
apply(plugin = "com.mooltiverse.oss.nyx")
Using the plugins DSL:
plugins {
id "com.mooltiverse.oss.nyx" version "2.4.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.mooltiverse.oss.nyx:gradle:2.4.3"
}
}
apply plugin: "com.mooltiverse.oss.nyx"