name.mlopatkin.bitbucket
Owner: Mikhail Lopatkin
A Gradle plugin to work with the Bitbucket Cloud API.
https://bitbucket.com/mlopatkin/bitbucket-plugin
Sources: https://bitbucket.org/mlopatkin/bitbucket-plugin.git
Version 0.6 (latest)
0.6
Created 08 October 2023.
A Gradle plugin to work with the Bitbucket Cloud API.
Using the plugins DSL:
plugins {
id("name.mlopatkin.bitbucket") version "0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("name.mlopatkin.bitbucket:gradle-plugin:0.6")
}
}
apply(plugin = "name.mlopatkin.bitbucket")
Using the plugins DSL:
plugins {
id "name.mlopatkin.bitbucket" version "0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "name.mlopatkin.bitbucket:gradle-plugin:0.6"
}
}
apply plugin: "name.mlopatkin.bitbucket"