fuse-cloud-access-adapter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.cryptomator</groupId> <artifactId>fuse-cloud-access-adapter</artifactId> <version>1.2.0-beta1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>fuse-cloud-access-adapter</artifactId> <version>1.2.0-beta1</version> <name>FUSE to CloudAccess Adapter</name> <description>Adapter between a FUSE frontend and a CloudAccess backend.</description> <url>https://github.com/cryptomator/fuse-cloud-access-adapter</url> <scm> <connection>scm:git:git@github.com:cryptomator/fuse-cloud-access-adapter.git</connection> <developerConnection>scm:git:git@github.com:cryptomator/fuse-cloud-access-adapter.git</developerConnection> <url>git@github.com:cryptomator/fuse-cloud-access-adapter.git</url> </scm> <developers> <developer> <name>Julian Raufelder</name> <email>julian.raufelder@skymatic.de</email> <timezone>+1</timezone> <organization>Skymatic GmbH</organization> <organizationUrl>http://skymatic.de</organizationUrl> </developer> <developer> <name>Armin Schrenk</name> <email>armin.schrenk@skymatic.de</email> <timezone>+1</timezone> <organization>Skymatic GmbH</organization> <organizationUrl>http://skymatic.de</organizationUrl> </developer> <developer> <name>Sebastian Stenzel</name> <email>sebastian.stenzel@skymatic.de</email> <timezone>+1</timezone> <organization>Skymatic GmbH</organization> <organizationUrl>http://skymatic.de</organizationUrl> </developer> </developers> <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> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- compile time dependencies --> <jnrfuse.version>0.5.7</jnrfuse.version> <cloudaccess.version>1.2.0-beta1</cloudaccess.version> <slf4j.version>1.7.33</slf4j.version> <dagger.version>2.40.5</dagger.version> <guava.version>31.0.1-jre</guava.version> <!-- test dependencies --> <junit.jupiter.version>5.8.2</junit.jupiter.version> <mockito.version>4.2.0</mockito.version> <hamcrest.version>2.2</hamcrest.version> </properties> <dependencies> <dependency> <groupId>org.cryptomator</groupId> <artifactId>cloud-access</artifactId> <version>${cloudaccess.version}</version> </dependency> <dependency> <groupId>com.github.serceman</groupId> <artifactId>jnr-fuse</artifactId> <version>${jnrfuse.version}</version> </dependency> <dependency> <groupId>com.google.dagger</groupId> <artifactId>dagger</artifactId> <version>${dagger.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <!-- JUnit / Mockito / Hamcrest --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </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> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.9.0</version> <configuration> <release>17</release> <annotationProcessorPaths> <path> <groupId>com.google.dagger</groupId> <artifactId>dagger-compiler</artifactId> <version>${dagger.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>org.cryptomator.cloudaccess.fuse</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <quiet>true</quiet> <source>8</source> <doclint>none</doclint> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> <configuration> <!-- see https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#excludes --> <excludes> <exclude></exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>dependency-check</id> <build> <plugins> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>6.1.5</version> <configuration> <cveValidForHours>24</cveValidForHours> <failBuildOnCVSS>0</failBuildOnCVSS> <skipTestScope>true</skipTestScope> <detail>true</detail> <suppressionFile>suppression.xml</suppressionFile> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>coverage</id> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.7</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </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>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>deploy-central</id> <distributionManagement> <repository> <id>ossrh</id> <name>Maven Central</name> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </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/fuse-cloud-access-adapter</url> </repository> </distributionManagement> </profile> </profiles> </project>