-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
49 additions
and
609 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,20 +2,34 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.cryptomator</groupId> | ||
<artifactId>cli</artifactId> | ||
<version>0.6.0-SNAPSHOT</version> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<name>Cryptomator CLI</name> | ||
<description>Command line program to access encrypted files via WebDAV.</description> | ||
<url>https://github.com/cryptomator/cli</url> | ||
|
||
<properties> | ||
<cryptofs.version>2.6.5</cryptofs.version> | ||
<webdav-nio.version>2.0.3</webdav-nio.version> | ||
<commons.cli.version>1.5.0</commons.cli.version> | ||
<logback.version>1.2.13</logback.version> | ||
<fuse-nio.version>1.3.3</fuse-nio.version> | ||
|
||
<java.version>17</java.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<jdk.version>22</jdk.version> | ||
|
||
<!-- native image options --> | ||
<mainClass>org.cryptomator.hubcli.HubCli</mainClass> | ||
<native.optimization>-Ob</native.optimization> <!-- default: no optimization/dev build--> | ||
|
||
<!-- runtime dependencies --> | ||
<cryptofs.version>2.7.0-beta1</cryptofs.version> | ||
<webdav-nio.version>2.0.6</webdav-nio.version> | ||
<fuse-nio.version>5.0.0</fuse-nio.version> | ||
<logback.version>1.5.6</logback.version> | ||
<slf4j.version>2.0.16</slf4j.version> | ||
|
||
<!-- build dependencies --> | ||
<jetbrains.annotations.version>24.0.1</jetbrains.annotations.version> | ||
<picocli.version>4.7.6</picocli.version> | ||
|
||
<!-- maven plugins --> | ||
<maven-compiler.version>3.13.0</maven-compiler.version> | ||
<maven-assembly.version>3.7.1</maven-assembly.version> | ||
</properties> | ||
|
||
<licenses> | ||
|
@@ -34,6 +48,13 @@ | |
<organization>cryptomator.org</organization> | ||
<organizationUrl>http://cryptomator.org</organizationUrl> | ||
</developer> | ||
<developer> | ||
<name>Armin Schrenk</name> | ||
<email>[email protected]</email> | ||
<timezone>+1</timezone> | ||
<organization>Skymatic GmbH</organization> | ||
<organizationUrl>https://skymatic.de</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<dependencies> | ||
|
@@ -53,14 +74,18 @@ | |
<version>${fuse-nio.version}</version> | ||
</dependency> | ||
|
||
<!-- Commons --> | ||
<dependency> | ||
<groupId>commons-cli</groupId> | ||
<artifactId>commons-cli</artifactId> | ||
<version>${commons.cli.version}</version> | ||
<groupId>info.picocli</groupId> | ||
<artifactId>picocli</artifactId> | ||
<version>${picocli.version}</version> | ||
</dependency> | ||
|
||
<!-- Logging --> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>${slf4j.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-core</artifactId> | ||
|
@@ -77,18 +102,26 @@ | |
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.1</version> | ||
<version>${maven-compiler.version}</version> | ||
<configuration> | ||
<source>${java.version}</source> | ||
<target>${java.version}</target> | ||
<release>${java.version}</release> | ||
<showWarnings>true</showWarnings> | ||
<annotationProcessorPaths> | ||
<path> | ||
<groupId>info.picocli</groupId> | ||
<artifactId>picocli-codegen</artifactId> | ||
<version>${picocli.version}</version> | ||
</path> | ||
</annotationProcessorPaths> | ||
<compilerArgs> | ||
<arg>-Aproject=${project.groupId}/${project.artifactId}</arg> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>3.3.0</version> | ||
<version>${maven-assembly.version}</version> | ||
<executions> | ||
<execution> | ||
<id>make-assembly</id> | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.