net.anshulverma.gradle.fileupload
Owner: Anshul Verma
Upload a build artifact to a remote location.
Sources: https://github.com/anshulverma/gradle-fileupload
Version 1.0.0 (latest)
1.0.0
Created 11 August 2015.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Upload a build artifact to a remote location.
Using the plugins DSL:
plugins {
id("net.anshulverma.gradle.fileupload") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.anshulverma:fileupload:1.0.0")
}
}
apply(plugin = "net.anshulverma.gradle.fileupload")
Using the plugins DSL:
plugins {
id "net.anshulverma.gradle.fileupload" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.anshulverma:fileupload:1.0.0"
}
}
apply plugin: "net.anshulverma.gradle.fileupload"