de.h1software.bitbucket.upload
所有者: Daniel Hagen
将文件上传到 Bitbucket 项目的下载部分。
https://bitbucket.org/dhagen/gradle-bitbucket-upload-plugin/
源代码: https://bitbucket.org/dhagen/gradle-bitbucket-upload-plugin.git
版本 0.1 (最新版)
0.1
创建于 2017 年 12 月 19 日。
将文件上传到 Bitbucket 项目的下载部分。
使用 插件 DSL
plugins {
id("de.h1software.bitbucket.upload") version "0.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.h1software.bitbucket.upload:gradle-bitbucket-upload-plugin:0.1")
}
}
apply(plugin = "de.h1software.bitbucket.upload")
使用 插件 DSL
plugins {
id "de.h1software.bitbucket.upload" version "0.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.h1software.bitbucket.upload:gradle-bitbucket-upload-plugin:0.1"
}
}
apply plugin: "de.h1software.bitbucket.upload"