Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gint.atlassian") version "3.0.0-beta8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gint:gint-atlassian:3.0.0-beta8")
      }
    }
    
    apply(plugin = "org.gint.atlassian")
  • Applying plugins to all subprojects .