Search Gradle plugins

org.ysb33r.vfs

Integrates the groovy-vfs library with Gradle allowing access and file operations on remote sites via a variety of internet protocols.

http://ysb33r.github.io/groovy-vfs

Version 1.0-beta6

Created 05 November 2015.

This is a plugin for Gradle that utilises the Groovy VFS DSL

Using the plugins DSL:

plugins {
  id("org.ysb33r.vfs") version "1.0-beta6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.ysb33r.gradle:vfs-gradle-plugin:1.0-beta6")
  }
}

apply(plugin = "org.ysb33r.vfs")

Using the plugins DSL:

plugins {
  id "org.ysb33r.vfs" version "1.0-beta6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.ysb33r.gradle:vfs-gradle-plugin:1.0-beta6"
  }
}

apply plugin: "org.ysb33r.vfs"

Learn how to apply plugins to subprojects