acme4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.shredzone.acme4j</groupId> <artifactId>acme4j</artifactId> <version>3.5.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- * * acme4j - ACME Java client * * Copyright (C) 2015 Richard "Shred" Körber * http://acme4j.shredzone.org * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.shredzone.acme4j</groupId> <artifactId>acme4j</artifactId> <version>3.5.1</version> <packaging>pom</packaging> <name>acme4j</name> <description>ACME client for Java</description> <url>https://acme4j.shredzone.org</url> <inceptionYear>2015</inceptionYear> <licenses> <license> <name>Apache License Version 2.0</name> <url>LICENSE-APL.txt</url> </license> </licenses> <scm> <url>https://codeberg.org/shred/acme4j/</url> <connection>scm:git:git@codeberg.org:shred/acme4j.git</connection> <developerConnection>scm:git:git@codeberg.org:shred/acme4j.git</developerConnection> <tag>v3.5.1</tag> </scm> <issueManagement> <system>Codeberg</system> <url>https://codeberg.org/shred/acme4j/issues</url> </issueManagement> <developers> <developer> <id>shred</id> <name>Richard Körber</name> </developer> </developers> <properties> <bouncycastle.version>1.80</bouncycastle.version> <httpclient.version>4.5.14</httpclient.version> <jakarta.mail.version>2.0.1</jakarta.mail.version> <jose4j.version>0.9.6</jose4j.version> <junit.version>5.11.4</junit.version> <slf4j.version>2.0.16</slf4j.version> <project.build.sourceEncoding>utf-8</project.build.sourceEncoding> <project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding> </properties> <modules> <module>acme4j-client</module> <module>acme4j-smime</module> <module>acme4j-example</module> <module>acme4j-it</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>11</release> </configuration> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.8.6.3</version> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> <configuration combine.children="append"> <parallel>classes</parallel> <threadCount>10</threadCount> <excludedGroups>requires-network</excludedGroups> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.2</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <excludes> <exclude>**/.gitignore</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <tagNameFormat>v@{project.version}</tagNameFormat> <pushChanges>false</pushChanges> <localCheckout>true</localCheckout> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <doclint>syntax,reference</doclint> <linksource>true</linksource> <locale>en</locale> <tags> <tag> <name>draft</name> <placement>a</placement> <head>Draft:</head> </tag> </tags> </configuration> </plugin> <plugin> <groupId>org.shredzone.maven</groupId> <artifactId>mkdocs-maven-plugin</artifactId> <version>1.2</version> <configuration> <outputDirectory>${project.build.directory}/site</outputDirectory> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-annotations</artifactId> <version>4.9.0</version> <optional>true</optional> <exclusions> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.27.3</version> <scope>test</scope> </dependency> <dependency> <groupId>net.javacrumbs.json-unit</groupId> <artifactId>json-unit-assertj</artifactId> <version>4.1.0</version> <scope>test</scope> </dependency> <dependency> <!-- Required by json-unit-assertj --> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20250107</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.15.2</version> <scope>test</scope> </dependency> <dependency> <!-- Pinned to 3.2.0 until https://github.com/wiremock/wiremock/issues/2480 is resolved --> <groupId>org.wiremock</groupId> <artifactId>wiremock</artifactId> <version>3.2.0</version> <scope>test</scope> </dependency> </dependencies> </project>