cryptofs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.cryptomator</groupId> <artifactId>cryptofs</artifactId> <version>2.9.0</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.cryptomator</groupId> <artifactId>cryptofs</artifactId> <version>2.9.0</version> <name>Cryptomator Crypto Filesystem</name> <description>This library provides the Java filesystem provider used by Cryptomator.</description> <url>https://github.com/cryptomator/cryptofs</url> <scm> <connection>scm:git:git@github.com:cryptomator/cryptofs.git</connection> <developerConnection>scm:git:git@github.com:cryptomator/cryptofs.git</developerConnection> <url>https://github.com/cryptomator/cryptofs</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>21</maven.compiler.release> <!-- dependencies --> <cryptolib.version>2.2.1</cryptolib.version> <jwt.version>4.5.0</jwt.version> <dagger.version>2.55</dagger.version> <guava.version>33.4.8-jre</guava.version> <caffeine.version>3.2.0</caffeine.version> <slf4j.version>2.0.17</slf4j.version> <!-- test dependencies --> <junit.jupiter.version>5.12.2</junit.jupiter.version> <jmh.version>1.37</jmh.version> <mockito.version>5.17.0</mockito.version> <hamcrest.version>3.0</hamcrest.version> <jimfs.version>1.3.0</jimfs.version> <!-- build plugin dependencies --> <mvn-compiler.version>3.14.0</mvn-compiler.version> <mvn-dependency.version>3.8.1</mvn-dependency.version> <mvn-surefire.version>3.5.3</mvn-surefire.version> <mvn-jar.version>3.4.2</mvn-jar.version> <mvn-source.version>3.3.1</mvn-source.version> <mvn-javadoc.version>3.11.2</mvn-javadoc.version> <mvn-gpg.version>3.2.7</mvn-gpg.version> <dependency-check.version>12.1.1</dependency-check.version> <junit-tree-reporter.version>1.4.0</junit-tree-reporter.version> <jacoco.version>0.8.13</jacoco.version> <central-publishing.version>0.7.0</central-publishing.version> <!-- Property used by surefire to determine jacoco engine --> <surefire.jacoco.args></surefire.jacoco.args> </properties> <licenses> <license> <name>GNU Affero General Public License (AGPL) version 3.0</name> <url>https://www.gnu.org/licenses/agpl.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Sebastian Stenzel</name> <email>sebastian.stenzel@skymatic.de</email> <timezone>+1</timezone> <organization>cryptomator.org</organization> <organizationUrl>https://cryptomator.org</organizationUrl> </developer> <developer> <name>Armin Schrenk</name> <email>armin.schrenk@skymatic.de</email> <timezone>+1</timezone> <organization>cryptomator.org</organization> <organizationUrl>https://cryptomator.org</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>org.cryptomator</groupId> <artifactId>cryptolib</artifactId> <version>${cryptolib.version}</version> </dependency> <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>${jwt.version}</version> </dependency> <dependency> <groupId>com.google.dagger</groupId> <artifactId>dagger</artifactId> <version>${dagger.version}</version> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> <version>2.0.1.MR</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>${caffeine.version}</version> <exclusions> <exclusion> <groupId>org.checkerframework</groupId> <artifactId>checker-qual</artifactId> </exclusion> <exclusion> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <!-- Test --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>${jmh.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>${jmh.version}</version> <scope>provided</scope> <!-- only required during compilation --> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.jimfs</groupId> <artifactId>jimfs</artifactId> <version>${jimfs.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${mvn-compiler.version}</version> <configuration> <showWarnings>true</showWarnings> <annotationProcessorPaths> <path> <groupId>com.google.dagger</groupId> <artifactId>dagger-compiler</artifactId> <version>${dagger.version}</version> </path> <path> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>${jmh.version}</version> </path> </annotationProcessorPaths> <compilerArgs>-Adagger.useBindingGraphFix=ENABLED</compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${mvn-dependency.version}</version> <executions> <execution> <id>jar-paths-to-properties</id> <goals> <goal>properties</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${mvn-surefire.version}</version> <dependencies> <dependency> <groupId>me.fabriciorby</groupId> <artifactId>maven-surefire-junit5-tree-reporter</artifactId> <version>${junit-tree-reporter.version}</version> </dependency> </dependencies> <configuration> <systemPropertyVariables> <org.slf4j.simpleLogger.defaultLogLevel>ERROR</org.slf4j.simpleLogger.defaultLogLevel> </systemPropertyVariables> <consoleOutputReporter> <disable>true</disable> </consoleOutputReporter> <statelessTestsetInfoReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter"> </statelessTestsetInfoReporter> <argLine>@{surefire.jacoco.args} -javaagent:${org.mockito:mockito-core:jar}</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${mvn-jar.version}</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${mvn-source.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${mvn-javadoc.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <tags> <!-- workaround for "unknown tag: implNote", see https://blog.codefx.org/java/new-javadoc-tags/#Maven --> <tag> <name>apiNote</name> <placement>a</placement> <head>API Note:</head> </tag> <tag> <name>implSpec</name> <placement>a</placement> <head>Implementation Requirements:</head> </tag> <tag> <name>implNote</name> <placement>a</placement> <head>Implementation Note:</head> </tag> <tag><name>param</name></tag> <tag><name>return</name></tag> <tag><name>throws</name></tag> <tag><name>since</name></tag> <tag><name>version</name></tag> <tag><name>serialData</name></tag> <tag><name>see</name></tag> </tags> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>dependency-check</id> <build> <plugins> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>${dependency-check.version}</version> <configuration> <nvdValidForHours>24</nvdValidForHours> <failBuildOnCVSS>0</failBuildOnCVSS> <skipTestScope>true</skipTestScope> <detail>true</detail> <suppressionFile>suppression.xml</suppressionFile> <nvdApiKeyEnvironmentVariable>NVD_API_KEY</nvdApiKeyEnvironmentVariable> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>validate</phase> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>coverage</id> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <propertyName>surefire.jacoco.args</propertyName> </configuration> </execution> <execution> <id>report</id> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>sign</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${mvn-gpg.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <signer>bc</signer> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>deploy-central</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>deploy-github</id> <distributionManagement> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/cryptomator/cryptofs</url> </repository> </distributionManagement> </profile> </profiles> </project>