Maintained by aalmiray
This plugin enables a Groovy DSL that wraps the Apache VFS libraries
| Website | https://github.com/ysb33r/groovy-vfs |
|---|---|
| Author | Schalk W. Cronjé |
| Version | 0.5 |
apply plugin: 'base'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.ysb33r.gradle:vfs-gradle-plugin:0.5'
classpath 'commons-httpclient:commons-httpclient:3.1'
}
}
apply plugin: 'vfs'
task copyReadme << {
vfs {
cp 'https://raw.github.com/ysb33r/groovy-vfs/master/README.md',
new File("${buildDir}/tmp/README.md")
}
}