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