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