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

Created 24 October 2015.

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-beta4"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.ysb33r.vfs:org.ysb33r.vfs.gradle.plugin:1.0-beta4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.ysb33r.vfs")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.ysb33r.vfs:org.ysb33r.vfs.gradle.plugin:1.0-beta4")
      }
    }
    
    apply(plugin = "org.ysb33r.vfs")
  • Applying plugins to all subprojects .