autocrypt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>rs.ltt.autocrypt</groupId> <artifactId>autocrypt</artifactId> <version>0.4.3</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>rs.ltt.autocrypt</groupId> <artifactId>autocrypt</artifactId> <version>0.4.3</version> <packaging>pom</packaging> <name>Java Autocrypt library</name> <description>A Java 11+ library that implements the Autocrypt Level 1 specification</description> <url>https://codeberg.org/iNPUTmice/lttrs-autocrypt</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Daniel Gultsch</name> <email>daniel@gultsch.de</email> <organization>Daniel Gultsch</organization> <organizationUrl>https://gultsch.de</organizationUrl> </developer> </developers> <modules> <module>autocrypt-client</module> <module>autocrypt-jmap</module> <module>coverage</module> </modules> <scm> <connection>scm:git:git://codeberg.org/iNPUTmice/lttrs-autocrypt.git</connection> <developerConnection>scm:git:ssh://codeberg.org/iNPUTmice/lttrs-autocrypt.git</developerConnection> <url>https://codberg.org/iNPUTmice/lttrs-autocrypt/</url> </scm> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <!-- dependency versions --> <properties> <java.version>17</java.version> <maven.compiler.version>3.14.0</maven.compiler.version> <maven.surefire.version>3.5.3</maven.surefire.version> <jmap.version>0.9.0</jmap.version> <immutables.version>2.10.0</immutables.version> <guava.version>33.4.6-jre</guava.version> <junit.jupiter.version>5.10.1</junit.jupiter.version> <junit.platform.version>1.10.1</junit.platform.version> <okhttp.version>4.12.0</okhttp.version> <mime4j.version>0.8.12</mime4j.version> <pgpainless.version>1.7.5</pgpainless.version> </properties> <build> <plugins> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.44.3</version> <configuration> <java> <googleJavaFormat> <style>AOSP</style> <reflowLongStrings>true</reflowLongStrings> </googleJavaFormat> </java> <pom> <sortPom> <nrOfIndentSpace>4</nrOfIndentSpace> <!-- same as google java format AOSP --> </sortPom> </pom> </configuration> <executions> <execution> <!-- Runs in compile phase to fail fast in case of formatting issues.--> <id>spotless-check</id> <goals> <goal>check</goal> </goals> <phase>compile</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0-M1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <goals> <goal>sign</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.13</version> <executions> <!-- set arg line property for surefire --> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <propertyName>surefireArgLine</propertyName> </configuration> </execution> <!-- set arg line property for failsafe --> <execution> <id>prepare-agent-integration</id> <goals> <goal>prepare-agent-integration</goal> </goals> <configuration> <propertyName>failsafeArgLine</propertyName> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>