org.gint.atlassian
Owner: Bob Swift
Gint Extension for Atlassian Products
Sources: https://bitbucket.org/gint_org/gint-atlassian
Add this plugin to your build using the plugins DSL:
plugins {
id("org.gint.atlassian") version "3.0.0-beta8"
}
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("org.gint.atlassian:org.gint.atlassian.gradle.plugin:3.0.0-beta8") }
It can then be applied in the precompiled script plugin:plugins { id("org.gint.atlassian") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.gint.atlassian:org.gint.atlassian.gradle.plugin:3.0.0-beta8") } } apply(plugin = "org.gint.atlassian")
- Applying plugins to all subprojects .