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