From f3e76d057ae85775a280eb77b782b8afaab20ec3 Mon Sep 17 00:00:00 2001 From: umjammer Date: Fri, 26 Jun 2020 04:42:41 +0900 Subject: [PATCH 1/5] rename --- .../java/vavi/nio/file/onedrive/{Main5.java => Rename.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename vavi-nio-file-onedrive/src/test/java/vavi/nio/file/onedrive/{Main5.java => Rename.java} (99%) diff --git a/vavi-nio-file-onedrive/src/test/java/vavi/nio/file/onedrive/Main5.java b/vavi-nio-file-onedrive/src/test/java/vavi/nio/file/onedrive/Rename.java similarity index 99% rename from vavi-nio-file-onedrive/src/test/java/vavi/nio/file/onedrive/Main5.java rename to vavi-nio-file-onedrive/src/test/java/vavi/nio/file/onedrive/Rename.java index 9942f6d6..2c857502 100644 --- a/vavi-nio-file-onedrive/src/test/java/vavi/nio/file/onedrive/Main5.java +++ b/vavi-nio-file-onedrive/src/test/java/vavi/nio/file/onedrive/Rename.java @@ -33,7 +33,7 @@ * @author Naohide Sano (umjammer) * @version 0.00 2017/03/14 umjammer initial version
*/ -public final class Main5 { +public final class Rename { public static void main(final String... args) throws IOException { String email = args[0]; From ef2ce8a10f61f99f1947a6079a77c830fe4d9281 Mon Sep 17 00:00:00 2001 From: umjammer Date: Fri, 26 Jun 2020 04:45:14 +0900 Subject: [PATCH 2/5] fix #10 --- .../onedrive4/OneDriveFileSystemDriver.java | 17 ++-- .../java/vavi/nio/file/onedrive4/Main.java | 20 ----- .../java/vavi/nio/file/onedrive4/Main5.java | 81 +++++++++++++++++++ 3 files changed, 91 insertions(+), 27 deletions(-) create mode 100644 vavi-nio-file-onedrive4/src/test/java/vavi/nio/file/onedrive4/Main5.java diff --git a/vavi-nio-file-onedrive4/src/main/java/vavi/nio/file/onedrive4/OneDriveFileSystemDriver.java b/vavi-nio-file-onedrive4/src/main/java/vavi/nio/file/onedrive4/OneDriveFileSystemDriver.java index ce064897..11910f8d 100644 --- a/vavi-nio-file-onedrive4/src/main/java/vavi/nio/file/onedrive4/OneDriveFileSystemDriver.java +++ b/vavi-nio-file-onedrive4/src/main/java/vavi/nio/file/onedrive4/OneDriveFileSystemDriver.java @@ -123,7 +123,7 @@ public DriveItem getEntry(Path path) throws IOException { if (pathString.equals("/")) { entry = client.drive().root().buildRequest().get(); } else { - entry = client.drive().root().itemWithPath(URLEncoder.encode(pathString.substring(1), "utf-8")).buildRequest().get(); + entry = client.drive().root().itemWithPath(toItemPathString(pathString.substring(1))).buildRequest().get(); } cache.putFile(path, entry); return entry; @@ -146,7 +146,6 @@ public DriveItem getEntry(Path path) throws IOException { public InputStream newInputStream(final Path path, final Set options) throws IOException { final DriveItem entry = cache.getEntry(path); - // TODO: metadata driver if (isFolder(entry)) { throw new IsDirectoryException(path.toString()); } @@ -171,7 +170,6 @@ public OutputStream newOutputStream(final Path path, final Set threshold) { - UploadSession uploadSession = client.drive().root().itemWithPath(URLEncoder.encode(toPathString(path), "utf-8")).createUploadSession(new DriveItemUploadableProperties()).buildRequest().post(); + UploadSession uploadSession = client.drive().root().itemWithPath(toItemPathString(toPathString(path))).createUploadSession(new DriveItemUploadableProperties()).buildRequest().post(); vavi.nio.file.onedrive4.graph.ChunkedUploadProvider chunkedUploadProvider = new vavi.nio.file.onedrive4.graph.ChunkedUploadProvider<>(uploadSession, client, size, DriveItem.class); return new BufferedOutputStream(chunkedUploadProvider.upload(new IProgressCallback() { @@ -224,7 +222,7 @@ public void failure(final ClientException ex) { @Override protected void onClosed() throws IOException { InputStream is = getInputStream(); - DriveItem newEntry = client.drive().root().itemWithPath(URLEncoder.encode(toPathString(path), "utf-8")).content().buildRequest().put(ByteStreams.toByteArray(is)); // TODO depends on guava + DriveItem newEntry = client.drive().root().itemWithPath(toItemPathString(toPathString(path))).content().buildRequest().put(ByteStreams.toByteArray(is)); // TODO depends on guava cache.addEntry(path, newEntry); } }; @@ -234,7 +232,7 @@ protected void onClosed() throws IOException { /** {@link Files#copy(Path, Path, CopyOption...)} */ private void uploadEntry(Path path, InputStream is, int size) throws IOException { if (size > 4 * 1024 * 1024) { - UploadSession uploadSession = client.drive().root().itemWithPath(URLEncoder.encode(toPathString(path), "utf-8")).createUploadSession(new DriveItemUploadableProperties()).buildRequest().post(); + UploadSession uploadSession = client.drive().root().itemWithPath(toItemPathString(toPathString(path))).createUploadSession(new DriveItemUploadableProperties()).buildRequest().post(); ChunkedUploadProvider chunkedUploadProvider = new ChunkedUploadProvider<>(uploadSession, client, is, size, DriveItem.class); chunkedUploadProvider.upload(new IProgressCallback() { @@ -253,11 +251,16 @@ public void failure(final ClientException ex) { } }); } else { - DriveItem newEntry = client.drive().root().itemWithPath(URLEncoder.encode(toPathString(path), "utf-8")).content().buildRequest().put(ByteStreams.toByteArray(is)); // TODO depends on guava + DriveItem newEntry = client.drive().root().itemWithPath(toItemPathString(toPathString(path))).content().buildRequest().put(ByteStreams.toByteArray(is)); // TODO depends on guava cache.addEntry(path, newEntry); } } + /** */ + private String toItemPathString(String pathString) throws IOException { + return URLEncoder.encode(pathString, "utf-8").replace("+", "%20"); + } + @Nonnull @Override public DirectoryStream newDirectoryStream(final Path dir, diff --git a/vavi-nio-file-onedrive4/src/test/java/vavi/nio/file/onedrive4/Main.java b/vavi-nio-file-onedrive4/src/test/java/vavi/nio/file/onedrive4/Main.java index 86e7be3e..0bb19eec 100644 --- a/vavi-nio-file-onedrive4/src/test/java/vavi/nio/file/onedrive4/Main.java +++ b/vavi-nio-file-onedrive4/src/test/java/vavi/nio/file/onedrive4/Main.java @@ -7,13 +7,8 @@ package vavi.nio.file.onedrive4; import java.net.URI; -import java.nio.file.FileSystem; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; import java.util.Collections; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static vavi.nio.file.Base.testAll; @@ -39,19 +34,4 @@ void test01() throws Exception { testAll(new OneDriveFileSystemProvider().newFileSystem(uri, Collections.EMPTY_MAP)); } - - @Test - @Disabled - void test02() throws Exception { - String email = System.getenv("MICROSOFT4_TEST_ACCOUNT"); - - URI uri = URI.create("onedrive:///?id=" + email); - - try (FileSystem onedrivefs = new OneDriveFileSystemProvider().newFileSystem(uri, Collections.EMPTY_MAP)) { - - Path src = Paths.get(System.getenv("HOME") , "Music/0/rc.wav"); - Path dst = onedrivefs.getPath("/").resolve("音楽").resolve(src.getFileName().toString()); - Files.copy(src, dst); - } - } } \ No newline at end of file diff --git a/vavi-nio-file-onedrive4/src/test/java/vavi/nio/file/onedrive4/Main5.java b/vavi-nio-file-onedrive4/src/test/java/vavi/nio/file/onedrive4/Main5.java new file mode 100644 index 00000000..d2446466 --- /dev/null +++ b/vavi-nio-file-onedrive4/src/test/java/vavi/nio/file/onedrive4/Main5.java @@ -0,0 +1,81 @@ +/* + * Copyright (c) 2020 by Naohide Sano, All rights reserved. + * + * Programmed by Naohide Sano + */ + +package vavi.nio.file.onedrive4; + +import java.net.URI; +import java.nio.file.FileSystem; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Collections; + +import org.junit.jupiter.api.Test; + +import vavi.nio.file.Base; +import vavi.nio.file.Util; +import vavi.util.Debug; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + + +/** + * OneDrive. (v2.0 graph api, msgraph engine) + * + * @author Naohide Sano (umjammer) + * @version 0.00 2020/05/31 umjammer initial version
+ */ +public class Main5 { + + @Test + void test01() throws Exception { + String email = System.getenv("TEST5_ACCOUNT"); + + URI uri = URI.create("onedrive:///?id=" + email); + + Path src; + Path dstDir; + Path dst; + String a, b; + try (FileSystem onedrivefs = new OneDriveFileSystemProvider().newFileSystem(uri, Collections.EMPTY_MAP)) { + + src = Paths.get("src/test/resources/Hello.java"); + dstDir = onedrivefs.getPath("/").resolve("TEST_FUSE_5"); + dst = dstDir.resolve("テスト 001"); + + if (Files.exists(dstDir)) { + Base.removeTree(dstDir); + } +System.out.println("$ mkdir " + dstDir); + Files.createDirectory(dstDir); + +System.out.println("$ cp " + src + " " + dst); + Files.copy(src, dst); // TODO w/o dstDir it's works +System.out.println("$ ls " + dstDir); +Files.list(dstDir).forEach(System.err::println); + a = Util.toFilenameString(Files.list(dstDir).findFirst().get()); + } + + try (FileSystem onedrivefs = new OneDriveFileSystemProvider().newFileSystem(uri, Collections.EMPTY_MAP)) { + dstDir = onedrivefs.getPath("/").resolve("TEST_FUSE_5"); + dst = dstDir.resolve("テスト 001"); + +System.out.println("$ ls " + dstDir); +Files.list(dstDir).forEach(System.out::println); + b = Util.toFilenameString(Files.list(dstDir).findFirst().get()); + + assertTrue(Files.exists(dst)); +Debug.println(a + ", " + b); + assertEquals(a, b); + +System.out.println("$ rm " + dst); + Files.delete(dst); +System.out.println("$ rmdir " + dstDir); + Files.delete(dstDir); + } + } +} \ No newline at end of file From ab6e14dff133a9a18fcc75e9682b7756a0bc2d2a Mon Sep 17 00:00:00 2001 From: umjammer Date: Fri, 26 Jun 2020 04:45:32 +0900 Subject: [PATCH 3/5] fix #10 --- .../onedrive3/OneDriveFileSystemDriver.java | 11 ++- .../java/vavi/nio/file/onedrive3/Main.java | 8 -- .../java/vavi/nio/file/onedrive3/Main5.java | 81 +++++++++++++++++++ .../src/test/resources/onedrive.properties | 2 +- 4 files changed, 89 insertions(+), 13 deletions(-) create mode 100644 vavi-nio-file-onedrive3/src/test/java/vavi/nio/file/onedrive3/Main5.java diff --git a/vavi-nio-file-onedrive3/src/main/java/vavi/nio/file/onedrive3/OneDriveFileSystemDriver.java b/vavi-nio-file-onedrive3/src/main/java/vavi/nio/file/onedrive3/OneDriveFileSystemDriver.java index 430e619b..2879db56 100644 --- a/vavi-nio-file-onedrive3/src/main/java/vavi/nio/file/onedrive3/OneDriveFileSystemDriver.java +++ b/vavi-nio-file-onedrive3/src/main/java/vavi/nio/file/onedrive3/OneDriveFileSystemDriver.java @@ -127,7 +127,6 @@ public OneDriveItem.Metadata getEntry(Path path) throws IOException { public InputStream newInputStream(final Path path, final Set options) throws IOException { final OneDriveItem.Metadata entry = cache.getEntry(path); - // TODO: metadata driver if (entry.isFolder()) { throw new IsDirectoryException("path: " + path); } @@ -149,7 +148,6 @@ public OutputStream newOutputStream(final Path path, final Set { cache.addEntry(path, newEntry); }), Util.BUFFER_SIZE); } + /** */ + private String toItemPathString(String pathString) throws IOException { + return URLEncoder.encode(pathString, "utf-8").replace("+", "%20"); + } + @Nonnull @Override public DirectoryStream newDirectoryStream(final Path dir, @@ -334,7 +337,7 @@ private OneDriveItem.Metadata getEntry(Path path) throws IOException { Optional found = StreamSupport.stream(OneDriveFolder.class.cast(parentEntry.getResource()).getChildren().spliterator(), false) .filter(child -> { try { -//System.out.println(child.getName() + ", " + toFilenameString(path)); +System.err.println(child.getName() + ", " + toFilenameString(path)); return child.getName().equals(toFilenameString(path)); } catch (IOException e) { throw new IllegalStateException(e); diff --git a/vavi-nio-file-onedrive3/src/test/java/vavi/nio/file/onedrive3/Main.java b/vavi-nio-file-onedrive3/src/test/java/vavi/nio/file/onedrive3/Main.java index d528c85c..668261e8 100644 --- a/vavi-nio-file-onedrive3/src/test/java/vavi/nio/file/onedrive3/Main.java +++ b/vavi-nio-file-onedrive3/src/test/java/vavi/nio/file/onedrive3/Main.java @@ -6,19 +6,11 @@ package vavi.nio.file.onedrive3; -import java.io.IOException; import java.net.URI; -import java.nio.file.FileSystem; import java.util.Collections; -import java.util.HashMap; -import java.util.Map; import org.junit.jupiter.api.Test; -import vavi.net.auth.oauth2.OAuth2AppCredential; -import vavi.net.auth.oauth2.microsoft.MicrosoftGraphLocalAppCredential; -import vavi.net.fuse.Fuse; - import static vavi.nio.file.Base.testAll; diff --git a/vavi-nio-file-onedrive3/src/test/java/vavi/nio/file/onedrive3/Main5.java b/vavi-nio-file-onedrive3/src/test/java/vavi/nio/file/onedrive3/Main5.java new file mode 100644 index 00000000..a642233c --- /dev/null +++ b/vavi-nio-file-onedrive3/src/test/java/vavi/nio/file/onedrive3/Main5.java @@ -0,0 +1,81 @@ +/* + * Copyright (c) 2020 by Naohide Sano, All rights reserved. + * + * Programmed by Naohide Sano + */ + +package vavi.nio.file.onedrive3; + +import java.net.URI; +import java.nio.file.FileSystem; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Collections; + +import org.junit.jupiter.api.Test; + +import vavi.nio.file.Base; +import vavi.nio.file.Util; +import vavi.util.Debug; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + + +/** + * OneDrive. (v2.0 graph api, cyberduck engine) + * + * @author Naohide Sano (umjammer) + * @version 0.00 2020/05/31 umjammer initial version
+ */ +public class Main5 { + + @Test + void test01() throws Exception { + String email = System.getenv("TEST5_ACCOUNT"); + + URI uri = URI.create("onedrive:///?id=" + email); + + Path src; + Path dstDir; + Path dst; + String a, b; + try (FileSystem onedrivefs = new OneDriveFileSystemProvider().newFileSystem(uri, Collections.EMPTY_MAP)) { + + src = Paths.get("src/test/resources/Hello.java"); + dstDir = onedrivefs.getPath("/").resolve("TEST_FUSE_5"); + dst = dstDir.resolve("テスト 001"); + + if (Files.exists(dstDir)) { + Base.removeTree(dstDir); + } +System.out.println("$ mkdir " + dstDir); + Files.createDirectory(dstDir); + +System.out.println("$ cp " + src + " " + dst); + Files.copy(src, dst); +System.out.println("$ ls " + dstDir); +Files.list(dstDir).forEach(System.out::println); + a = Util.toFilenameString(Files.list(dstDir).findFirst().get()); + } + + try (FileSystem onedrivefs = new OneDriveFileSystemProvider().newFileSystem(uri, Collections.EMPTY_MAP)) { + dstDir = onedrivefs.getPath("/").resolve("TEST_FUSE_5"); + dst = dstDir.resolve("テスト 001"); + +System.out.println("$ ls " + dstDir); +Files.list(dstDir).forEach(System.out::println); + b = Util.toFilenameString(Files.list(dstDir).findFirst().get()); + + assertTrue(Files.exists(dst)); +Debug.println(a + ", " + b); + assertEquals(a, b); + +System.out.println("$ rm " + dst); + Files.delete(dst); +System.out.println("$ rmdir " + dstDir); + Files.delete(dstDir); + } + } +} \ No newline at end of file diff --git a/vavi-nio-file-onedrive3/src/test/resources/onedrive.properties b/vavi-nio-file-onedrive3/src/test/resources/onedrive.properties index 3670a6cc..298c42c4 100644 --- a/vavi-nio-file-onedrive3/src/test/resources/onedrive.properties +++ b/vavi-nio-file-onedrive3/src/test/resources/onedrive.properties @@ -1 +1 @@ -authenticatorClassName=vavi.net.auth.oauth2.microsoft.OneDriveLocalAuthenticator +authenticatorClassName=vavi.net.auth.oauth2.microsoft.MicrosoftLocalAuthenticator From 22a2e74a726bcb8970c0852837d413bc1c13b88b Mon Sep 17 00:00:00 2001 From: umjammer Date: Fri, 26 Jun 2020 04:46:21 +0900 Subject: [PATCH 4/5] test #10 --- .../java/vavi/nio/file/onedrive/Main5.java | 81 +++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 vavi-nio-file-onedrive/src/test/java/vavi/nio/file/onedrive/Main5.java diff --git a/vavi-nio-file-onedrive/src/test/java/vavi/nio/file/onedrive/Main5.java b/vavi-nio-file-onedrive/src/test/java/vavi/nio/file/onedrive/Main5.java new file mode 100644 index 00000000..3b83ef01 --- /dev/null +++ b/vavi-nio-file-onedrive/src/test/java/vavi/nio/file/onedrive/Main5.java @@ -0,0 +1,81 @@ +/* + * Copyright (c) 2020 by Naohide Sano, All rights reserved. + * + * Programmed by Naohide Sano + */ + +package vavi.nio.file.onedrive; + +import java.net.URI; +import java.nio.file.FileSystem; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Collections; + +import org.junit.jupiter.api.Test; + +import vavi.nio.file.Base; +import vavi.nio.file.Util; +import vavi.util.Debug; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + + +/** + * OneDrive. (OneDriveJavaSDK engine) + * + * @author Naohide Sano (umjammer) + * @version 0.00 2020/05/31 umjammer initial version
+ */ +public class Main5 { + + @Test + void test01() throws Exception { + String email = System.getenv("TEST5_ACCOUNT"); + + URI uri = URI.create("onedrive:///?id=" + email); + + Path src; + Path dstDir; + Path dst; + String a, b; + try (FileSystem onedrivefs = new OneDriveFileSystemProvider().newFileSystem(uri, Collections.EMPTY_MAP)) { + + src = Paths.get("src/test/resources/Hello.java"); + dstDir = onedrivefs.getPath("/").resolve("TEST_FUSE_5"); + dst = dstDir.resolve("テスト 001"); + + if (Files.exists(dstDir)) { + Base.removeTree(dstDir); + } +System.out.println("$ mkdir " + dstDir); + Files.createDirectory(dstDir); + +System.out.println("$ cp " + src + " " + dst); + Files.copy(src, dst); // TODO w/o dstDir it's works +System.out.println("$ ls " + dstDir); +Files.list(dstDir).forEach(System.err::println); + a = Util.toFilenameString(Files.list(dstDir).findFirst().get()); + } + + try (FileSystem onedrivefs = new OneDriveFileSystemProvider().newFileSystem(uri, Collections.EMPTY_MAP)) { + dstDir = onedrivefs.getPath("/").resolve("TEST_FUSE_5"); + dst = dstDir.resolve("テスト 001"); + +System.out.println("$ ls " + dstDir); +Files.list(dstDir).forEach(System.out::println); + b = Util.toFilenameString(Files.list(dstDir).findFirst().get()); + + assertTrue(Files.exists(dst)); +Debug.println(a + ", " + b); + assertEquals(a, b); + +System.out.println("$ rm " + dst); + Files.delete(dst); +System.out.println("$ rmdir " + dstDir); + Files.delete(dstDir); + } + } +} \ No newline at end of file From b0900ea0376581510eb1291329a4da8c22663cea Mon Sep 17 00:00:00 2001 From: umjammer Date: Fri, 26 Jun 2020 05:47:21 +0900 Subject: [PATCH 5/5] bump version --- pom.xml | 8 ++++---- vavi-net-fuse/pom.xml | 4 ++-- vavi-nio-file-amazondrive/pom.xml | 2 +- vavi-nio-file-archive/pom.xml | 2 +- vavi-nio-file-flickr/pom.xml | 2 +- vavi-nio-file-gathered/pom.xml | 6 +++--- vavi-nio-file-googledrive/pom.xml | 2 +- vavi-nio-file-hfs/pom.xml | 2 +- vavi-nio-file-onedrive/pom.xml | 2 +- vavi-nio-file-onedrive3/pom.xml | 2 +- vavi-nio-file-onedrive4/pom.xml | 2 +- vavi-nio-file-sandbox/pom.xml | 8 ++++---- vavi-nio-file-vfs/pom.xml | 2 +- 13 files changed, 22 insertions(+), 22 deletions(-) diff --git a/pom.xml b/pom.xml index 4c197696..ab0b7fd5 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ vavi vavi-apps-fuse - 0.1.5 + 0.1.6 0.1.2 @@ -156,7 +156,7 @@ TODO vavi vavi-net-fuse - 0.1.5 + 0.1.6 @@ -195,13 +195,13 @@ TODO vavi vavi-net-fuse - 0.1.5 + 0.1.6 test vavi vavi-net-fuse - 0.1.5 + 0.1.6 test-jar test diff --git a/vavi-net-fuse/pom.xml b/vavi-net-fuse/pom.xml index c7dff561..575492ce 100644 --- a/vavi-net-fuse/pom.xml +++ b/vavi-net-fuse/pom.xml @@ -7,7 +7,7 @@ vavi vavi-apps-fuse - 0.1.5 + 0.1.6 vavi-net-fuse @@ -63,7 +63,7 @@ com.github.umjammer vavi-commons - 1.1.2 + 1.1.3 diff --git a/vavi-nio-file-amazondrive/pom.xml b/vavi-nio-file-amazondrive/pom.xml index 739ca32d..ace5be15 100644 --- a/vavi-nio-file-amazondrive/pom.xml +++ b/vavi-nio-file-amazondrive/pom.xml @@ -5,7 +5,7 @@ vavi vavi-apps-fuse - 0.1.5 + 0.1.6 vavi-nio-file-amazondrive diff --git a/vavi-nio-file-archive/pom.xml b/vavi-nio-file-archive/pom.xml index 2a380539..c6130e74 100644 --- a/vavi-nio-file-archive/pom.xml +++ b/vavi-nio-file-archive/pom.xml @@ -5,7 +5,7 @@ vavi vavi-apps-fuse - 0.1.5 + 0.1.6 vavi-nio-file-archive diff --git a/vavi-nio-file-flickr/pom.xml b/vavi-nio-file-flickr/pom.xml index e7978e19..ac8daae2 100644 --- a/vavi-nio-file-flickr/pom.xml +++ b/vavi-nio-file-flickr/pom.xml @@ -5,7 +5,7 @@ vavi vavi-apps-fuse - 0.1.5 + 0.1.6 vavi-nio-file-flickr diff --git a/vavi-nio-file-gathered/pom.xml b/vavi-nio-file-gathered/pom.xml index 21f34b07..0821da29 100644 --- a/vavi-nio-file-gathered/pom.xml +++ b/vavi-nio-file-gathered/pom.xml @@ -5,7 +5,7 @@ vavi vavi-apps-fuse - 0.1.5 + 0.1.6 vavi-nio-file-gathered @@ -89,13 +89,13 @@ vavi vavi-nio-file-googledrive - 0.1.5 + 0.1.6 test vavi vavi-nio-file-onedrive4 - 0.1.5 + 0.1.6 test diff --git a/vavi-nio-file-googledrive/pom.xml b/vavi-nio-file-googledrive/pom.xml index 5c39fb9b..2dd2a16d 100644 --- a/vavi-nio-file-googledrive/pom.xml +++ b/vavi-nio-file-googledrive/pom.xml @@ -5,7 +5,7 @@ vavi vavi-apps-fuse - 0.1.5 + 0.1.6 vavi-nio-file-googledrive diff --git a/vavi-nio-file-hfs/pom.xml b/vavi-nio-file-hfs/pom.xml index 3e5c4c4a..b70cfc95 100644 --- a/vavi-nio-file-hfs/pom.xml +++ b/vavi-nio-file-hfs/pom.xml @@ -5,7 +5,7 @@ vavi vavi-apps-fuse - 0.1.5 + 0.1.6 vavi-nio-file-hfs diff --git a/vavi-nio-file-onedrive/pom.xml b/vavi-nio-file-onedrive/pom.xml index c38b406e..4ca45e36 100644 --- a/vavi-nio-file-onedrive/pom.xml +++ b/vavi-nio-file-onedrive/pom.xml @@ -5,7 +5,7 @@ vavi vavi-apps-fuse - 0.1.5 + 0.1.6 vavi-nio-file-onedrive diff --git a/vavi-nio-file-onedrive3/pom.xml b/vavi-nio-file-onedrive3/pom.xml index 4daeec67..fc985f29 100644 --- a/vavi-nio-file-onedrive3/pom.xml +++ b/vavi-nio-file-onedrive3/pom.xml @@ -4,7 +4,7 @@ vavi-apps-fuse vavi - 0.1.5 + 0.1.6 vavi-nio-file-onedrive3 diff --git a/vavi-nio-file-onedrive4/pom.xml b/vavi-nio-file-onedrive4/pom.xml index 5931edea..90bdcbbe 100644 --- a/vavi-nio-file-onedrive4/pom.xml +++ b/vavi-nio-file-onedrive4/pom.xml @@ -5,7 +5,7 @@ vavi vavi-apps-fuse - 0.1.5 + 0.1.6 vavi-nio-file-onedrive4 diff --git a/vavi-nio-file-sandbox/pom.xml b/vavi-nio-file-sandbox/pom.xml index c319aee6..a056db1c 100644 --- a/vavi-nio-file-sandbox/pom.xml +++ b/vavi-nio-file-sandbox/pom.xml @@ -7,7 +7,7 @@ vavi vavi-apps-fuse - 0.1.5 + 0.1.6 vavi-nio-file-sandbox @@ -73,19 +73,19 @@ vavi vavi-nio-file-onedrive - 0.1.5 + 0.1.6 test vavi vavi-nio-file-onedrive4 - 0.1.5 + 0.1.6 test vavi vavi-nio-file-googledrive - 0.1.5 + 0.1.6 test diff --git a/vavi-nio-file-vfs/pom.xml b/vavi-nio-file-vfs/pom.xml index 0c8975e9..6c67b6a2 100644 --- a/vavi-nio-file-vfs/pom.xml +++ b/vavi-nio-file-vfs/pom.xml @@ -4,7 +4,7 @@ vavi-apps-fuse vavi - 0.1.5 + 0.1.6 vavi-nio-file-vfs