net.anshulverma.gradle.fileupload
所有者: Anshul Verma
将构建工件上传到远程位置。
来源: https://github.com/anshulverma/gradle-fileupload
版本 1.0.0(最新版)
1.0.0
创建于2015年8月11日。
由于此插件版本将不再从JCenter解析(因为它只使用在JCenter中存在的依赖),随着JCenter永久重定向到Maven Central,它将不再被解析。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 将构建工件上传到远程位置。
使用plugins DSL
plugins {
id("net.anshulverma.gradle.fileupload") version "1.0.0"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.anshulverma:fileupload:1.0.0")
}
}
apply(plugin = "net.anshulverma.gradle.fileupload")
使用plugins DSL
plugins {
id "net.anshulverma.gradle.fileupload" version "1.0.0"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.anshulverma:fileupload:1.0.0"
}
}
apply plugin: "net.anshulverma.gradle.fileupload"