Approval confirmation
Approval confirmation
Delete plugin confirmation
To confirm the plugin deletion insert pluginId and author name
Mooltiverse Root
com.mooltiverse.oss.nyx
PluginId
Author
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.
Version 3.0.9
3.0.9
Created 31 October 2024.
The Nyx Gradle plugin automates the sematic release process for Gradle projects using semantic versioning and leveraging the Git branching model.
Other versions
- 3.1.0
- 3.1.0-alpha.3
- 3.1.0-alpha.2
- 3.1.0-alpha.1
- 3.0.11
- 3.0.10
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.1-alpha.3
- 3.0.1-alpha.2
- 3.0.1-alpha.1
- 3.0.0
- 2.5.2
- 2.5.1
- 2.5.1-alpha.4
- 2.5.1-alpha.3
- 2.5.1-alpha.2
- 2.5.1-alpha.1
- 2.5.0
- 2.5.0-alpha.4
- 2.5.0-alpha.3
- 2.5.0-alpha.1
- 2.4.7
- 2.4.6-hotfix236.1
- 2.4.6
- 2.4.5
- 2.4.4-hotfix219.3
- 2.4.4-hotfix219.2
- 2.4.4-hotfix219.1
- 2.4.4
- 2.4.3
- 2.4.1-hotfix225.1
- 2.4.1-hotfix221.1
- 2.4.1
- 2.4.0
- 2.3.5-hotfix217.1
- 2.3.5
- 2.3.4
- 2.3.3-hotfix205.2
- 2.3.3-hotfix205.1
- 2.3.3-hotfix194.1
- 2.3.3
- 2.3.1-hotfix186.1
- 2.3.1
- 2.3.0
- 2.3.0-alpha.3
- 2.3.0-alpha.2
- 2.3.0-alpha.1
- 2.2.0
- 2.1.0
- 2.1.0-alpha.3
- 2.1.0-alpha.2
- 2.1.0-alpha.1
- 2.0.0
- 1.3.3
- 1.3.2-hotfix134.1
- 1.3.2
- 1.3.1-hotfix130.2
- 1.3.1-hotfix130.1
- 1.3.1
- 1.3.0
- 1.3.0-alpha.2
- 1.3.0-alpha.1
- 1.2.3-hotfix122.1
- 1.2.3
- 1.2.2-hotfix116.1
- 1.2.2
- 1.2.1
- 1.2.1-alpha.2
- 1.2.1-alpha.1
- 1.2.0
- 1.1.0
- 1.0.1-fix81.1
- 1.0.1
- 1.0.0
- 1.0.0-alpha.1
- 0.2.1-alpha.17
- 0.2.1-alpha.16
- 0.2.1-alpha.15
- 0.2.1-alpha.14
- 0.2.1-alpha.13
- 0.2.1-alpha.12
- 0.2.1-alpha.11
- 0.2.1-alpha.10
- 0.2.1-alpha.9
- 0.2.0-fix74.1
- 0.2.0-alpha.10
- 0.2.0-alpha.9
- 0.2.0-alpha.8
- 0.2.0-alpha.7
- 0.2.0-alpha.6
- 0.2.0-alpha.5
- 0.2.0-alpha.4
- 0.2.0-alpha.3
- 0.2.0-alpha.2
- 0.2.0-alpha.1
- 0.1.0-alpha.32
- 0.1.0-alpha.31
- 0.1.0-alpha.30
- 0.1.0-alpha.29
- 0.1.0-alpha.27
- 0.1.0-alpha.26
- 0.1.0-alpha.25
- 0.1.0-alpha.24
- 0.1.0-alpha.23
- 0.1.0-alpha.22
- 0.1.0-alpha.21
- 0.1.0-alpha.20
- 0.1.0-alpha.19
- 0.1.0-alpha.18
- 0.1.0-alpha.17
- 0.1.0-alpha.16
- 0.1.0-alpha.15
- 0.1.0-alpha.14
- 0.1.0-alpha.13
- 0.0.2-alpha.13
- 0.0.2-alpha.12
- 0.0.2-alpha.11
- 0.0.2-alpha.10
- 0.0.2-alpha.9
- 0.0.2-alpha.7
- 0.0.2-alpha.4
- 0.0.2-alpha.3
- 0.0.2-alpha.1
- 0.0.1-alpha.35
- 0.0.1-alpha.34
- 0.0.1-alpha.33
- 0.0.1-alpha.27
- 0.0.1-alpha.25
- v0.0.2-alpha.2
- v0.0.2-alpha.1
Add this plugin to your build using the plugins DSL:
plugins {
id("com.mooltiverse.oss.nyx") version "3.0.9"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.mooltiverse.oss.nyx:com.mooltiverse.oss.nyx.gradle.plugin:3.0.9") }
It can then be applied in the precompiled script plugin:plugins { id("com.mooltiverse.oss.nyx") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.mooltiverse.oss.nyx:com.mooltiverse.oss.nyx.gradle.plugin:3.0.9") } } apply(plugin = "com.mooltiverse.oss.nyx")
- Applying plugins to all subprojects .