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 (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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.ysb33r.gradle:vfs-gradle-plugin:1.0")
      }
    }
    
    apply(plugin = "org.ysb33r.vfs")
  • Applying plugins to all subprojects .