diff --git a/README.md b/README.md index 35c4b4d..d111a44 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,13 @@ Download the jar file via [GitHub Releases](https://github.com/cryptomator/cli/r Cryptomator CLI depends on a Java 8 JRE. In addition the JCE unlimited strength policy files (needed for 256-bit keys) must be installed. ```sh -java -jar cryptomator-cli-x.y.z.jar --bind 0.0.0.0 --port 8080 --vault demoVault=/path/to/vault --password demoVault=topSecret +java -jar cryptomator-cli-x.y.z.jar \ + --vault demoVault=/path/to/vault --password demoVault=topSecret \ + --vault otherVault=/path/to/differentVault --passwordfile otherVault=/path/to/fileWithPassword \ + --bind 0.0.0.0 --port 8080 # you can now mount http://localhost:8080/demoVault/ ``` -In the current test version passwords can only be provided as a program argument. This will change in the future. - ## License This project is dual-licensed under the AGPLv3 for FOSS projects as well as a commercial license derived from the LGPL for independent software vendors and resellers. If you want to use this library in applications, that are *not* licensed under the AGPL, feel free to contact our [support team](https://cryptomator.org/help/). diff --git a/pom.xml b/pom.xml index 00ad58c..7de11e6 100644 --- a/pom.xml +++ b/pom.xml @@ -2,16 +2,18 @@ 4.0.0 org.cryptomator cli - 0.3.0 + 0.3.1 Cryptomator CLI Command line program to access encrypted files via WebDAV. https://github.com/cryptomator/cli - 1.8 + 1.4.0 + 0.6.2 1.3.1 - 1.3.1 - 0.4.0 + 1.2.2 + + 1.8 UTF-8 @@ -44,7 +46,7 @@ webdav-nio-adapter ${webdav-nio.version} - + commons-cli @@ -54,14 +56,14 @@ - org.apache.logging.log4j - log4j-slf4j-impl - 2.8 + ch.qos.logback + logback-core + ${logback.version} - org.apache.logging.log4j - log4j-core - 2.8 + ch.qos.logback + logback-classic + ${logback.version} @@ -76,7 +78,7 @@ true - + maven-assembly-plugin 3.0.0 diff --git a/src/main/resources/log4j2.xml b/src/main/resources/log4j2.xml deleted file mode 100644 index 2ae85c4..0000000 --- a/src/main/resources/log4j2.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml new file mode 100644 index 0000000..a92d372 --- /dev/null +++ b/src/main/resources/logback.xml @@ -0,0 +1,15 @@ + + + + + + true + + %d{HH:mm:ss.SSS} [%thread] %highlight(%-5level) %logger{36} - %msg%n + + + + + + +