|
2 | 2 | <modelVersion>4.0.0</modelVersion>
|
3 | 3 | <groupId>org.cryptomator</groupId>
|
4 | 4 | <artifactId>cli</artifactId>
|
5 |
| - <version>0.3.0</version> |
| 5 | + <version>0.3.1</version> |
6 | 6 | <name>Cryptomator CLI</name>
|
7 | 7 | <description>Command line program to access encrypted files via WebDAV.</description>
|
8 | 8 | <url>https://github.com/cryptomator/cli</url>
|
9 | 9 |
|
10 | 10 | <properties>
|
11 |
| - <java.version>1.8</java.version> |
| 11 | + <cryptofs.version>1.4.0</cryptofs.version> |
| 12 | + <webdav-nio.version>0.6.2</webdav-nio.version> |
12 | 13 | <commons.cli.version>1.3.1</commons.cli.version>
|
13 |
| - <cryptofs.version>1.3.1</cryptofs.version> |
14 |
| - <webdav-nio.version>0.4.0</webdav-nio.version> |
| 14 | + <logback.version>1.2.2</logback.version> |
| 15 | + |
| 16 | + <java.version>1.8</java.version> |
15 | 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
16 | 18 | </properties>
|
17 | 19 |
|
|
44 | 46 | <artifactId>webdav-nio-adapter</artifactId>
|
45 | 47 | <version>${webdav-nio.version}</version>
|
46 | 48 | </dependency>
|
47 |
| - |
| 49 | + |
48 | 50 | <!-- Commons -->
|
49 | 51 | <dependency>
|
50 | 52 | <groupId>commons-cli</groupId>
|
|
54 | 56 |
|
55 | 57 | <!-- Logging -->
|
56 | 58 | <dependency>
|
57 |
| - <groupId>org.apache.logging.log4j</groupId> |
58 |
| - <artifactId>log4j-slf4j-impl</artifactId> |
59 |
| - <version>2.8</version> |
| 59 | + <groupId>ch.qos.logback</groupId> |
| 60 | + <artifactId>logback-core</artifactId> |
| 61 | + <version>${logback.version}</version> |
60 | 62 | </dependency>
|
61 | 63 | <dependency>
|
62 |
| - <groupId>org.apache.logging.log4j</groupId> |
63 |
| - <artifactId>log4j-core</artifactId> |
64 |
| - <version>2.8</version> |
| 64 | + <groupId>ch.qos.logback</groupId> |
| 65 | + <artifactId>logback-classic</artifactId> |
| 66 | + <version>${logback.version}</version> |
65 | 67 | </dependency>
|
66 | 68 | </dependencies>
|
67 | 69 |
|
|
76 | 78 | <showWarnings>true</showWarnings>
|
77 | 79 | </configuration>
|
78 | 80 | </plugin>
|
79 |
| - |
| 81 | + |
80 | 82 | <plugin>
|
81 | 83 | <artifactId>maven-assembly-plugin</artifactId>
|
82 | 84 | <version>3.0.0</version>
|
|
0 commit comments