de.h1software.bitbucket.upload
Owner: Daniel Hagen
Upload files to a Bitbucket project's downloads section.
https://bitbucket.org/dhagen/gradle-bitbucket-upload-plugin/
Sources: https://bitbucket.org/dhagen/gradle-bitbucket-upload-plugin.git
Version 0.1 (latest)
0.1
Created 19 December 2017.
Upload files to a Bitbucket project's downloads section.
Using the plugins DSL:
plugins {
id("de.h1software.bitbucket.upload") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.h1software.bitbucket.upload:gradle-bitbucket-upload-plugin:0.1")
}
}
apply(plugin = "de.h1software.bitbucket.upload")
Using the plugins DSL:
plugins {
id "de.h1software.bitbucket.upload" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.h1software.bitbucket.upload:gradle-bitbucket-upload-plugin:0.1"
}
}
apply plugin: "de.h1software.bitbucket.upload"