Search Gradle plugins

Version 0.0.2-SNAPSHOT

Created 11 August 2015.

Upload a build artifact to a remote location.

Using the plugins DSL:

plugins {
  id("net.anshulverma.gradle.fileupload") version "0.0.2-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.anshulverma:fileupload:0.0.2-SNAPSHOT")
  }
}

apply(plugin = "net.anshulverma.gradle.fileupload")

Using the plugins DSL:

plugins {
  id "net.anshulverma.gradle.fileupload" version "0.0.2-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.anshulverma:fileupload:0.0.2-SNAPSHOT"
  }
}

apply plugin: "net.anshulverma.gradle.fileupload"

Learn how to apply plugins to subprojects