org.ysb33r.vfs
Owner: Schalk Cronjé
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 (latest)
1.0
Created 10 June 2016.
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
This is a plugin for Gradle that utilises the Groovy VFS DSL
Using the plugins DSL:
plugins {
id("org.ysb33r.vfs") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.ysb33r.gradle:vfs-gradle-plugin:1.0")
}
}
apply(plugin = "org.ysb33r.vfs")
Using the plugins DSL:
plugins {
id "org.ysb33r.vfs" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.ysb33r.gradle:vfs-gradle-plugin:1.0"
}
}
apply plugin: "org.ysb33r.vfs"