Search Gradle plugins

Version 0.6 (latest)

0.6

Created 08 October 2023.

A Gradle plugin to work with the Bitbucket Cloud API.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.mlopatkin.bitbucket") version "0.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.mlopatkin.bitbucket:gradle-plugin:0.6")
      }
    }
    
    apply(plugin = "name.mlopatkin.bitbucket")
  • Applying plugins to all subprojects .