Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Releases: ysb33r/groovy-vfs

Release 1.0.1

22 Aug 17:03
df792b9
Compare
Choose a tag to compare

Fixes #81 - When using Ant Selector, multiple wildcards in filename does not work

1.0 Release

10 Jun 14:14
Compare
Choose a tag to compare
RELEASE_1_0

Documentation fixes for 1.0

1.0 Beta-9 Release

10 Jun 12:49
Compare
Choose a tag to compare
1.0 Beta-9 Release Pre-release
Pre-release

Test release before final 1.0 push

1.0 Beta-8 Release

31 Jan 17:43
Compare
Choose a tag to compare
1.0 Beta-8 Release Pre-release
Pre-release
  • Optimisation for when a Apache VFS FileObject is passed to VFS.cat

1.0 Beta-7 Release

31 Jan 15:58
Compare
Choose a tag to compare
1.0 Beta-7 Release Pre-release
Pre-release
  • FIxed issue when resolved URI are passed to VFS.resolveURI with non-VFS options.
  • Added closeFileSystem option to VFS.ls method.

1.0 Beta-6 Release

05 Nov 15:38
Compare
Choose a tag to compare
1.0 Beta-6 Release Pre-release
Pre-release

Added a dirty workaround for an issue with the Gradle pplugin-publish-plugin

1.0 Beta-4 Release

24 Oct 22:32
Compare
Choose a tag to compare
1.0 Beta-4 Release Pre-release
Pre-release

Now has a basic VfsCopy task, although the property chaching is nor working correctly yet

1.0-beta3

24 Jun 13:35
Compare
Choose a tag to compare
1.0-beta3 Pre-release
Pre-release

In addition to beta2 this also includes:

  • Ant-style patterns for copy filters
  • Enhancements to Gradle plugin VfsCopy task.

1.0 Beta-5 Release

27 Oct 22:15
Compare
Choose a tag to compare
1.0 Beta-5 Release Pre-release
Pre-release
  • Added onlyNewer overwrite policy to DSL
  • Up to date check for VfsCopy task
  • VfsCopy will attempt to only copy files where the source is newer than the destination.

1.0 Beta-2 Release

18 Dec 21:17
Compare
Choose a tag to compare
1.0 Beta-2 Release Pre-release
Pre-release

In addition to Beta 1, Beta 2 also includes

  • Use of uri keyword to disambiguate URIs on certain circumstances
  • resolveURI is now public method, making it available to the DSL and for people who need an easy way of getting hold of the underlying Apache VFS FileObject instance.
  • Ability to send arbitrary text to a remote file
    vfs {

        overwrite 'sftp://user:pass@server/file' with 'this text'

        append 'sftp://user:pass@server/file' with 'this text'

        overwrite 'sftp://user:pass@server/file' with 'this text', {

            // Closure takes an OutputStream
            it << 'text' 

        } 

    } 
  • cmdline vfs: mkdir now supports GNU options -p, --parents
  • cmdline vfs: mv now supports non-GNU option --parents