mirror of https://github.com/shred/acme4j
251 lines
9.1 KiB
XML
251 lines
9.1 KiB
XML
<?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>2.17-SNAPSHOT</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://github.com/shred/acme4j/</url>
|
|
<connection>scm:git:git@github.com:shred/acme4j.git</connection>
|
|
<developerConnection>scm:git:git@github.com:shred/acme4j.git</developerConnection>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/shred/acme4j/issues</url>
|
|
</issueManagement>
|
|
<developers>
|
|
<developer>
|
|
<id>shred</id>
|
|
<name>Richard Körber</name>
|
|
</developer>
|
|
</developers>
|
|
|
|
<properties>
|
|
<bouncycastle.version>1.72</bouncycastle.version>
|
|
<httpclient.version>4.5.13</httpclient.version>
|
|
<jakarta.mail.version>2.0.1</jakarta.mail.version>
|
|
<jose4j.version>0.9.3</jose4j.version>
|
|
<slf4j.version>2.0.6</slf4j.version>
|
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
|
|
<branch>v2</branch>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>acme4j-client</module>
|
|
<module>acme4j-utils</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>8</release>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>default-compile</id>
|
|
<configuration>
|
|
<release>9</release>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>base-compile</id>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>module-info.java</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.github.spotbugs</groupId>
|
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
|
<version>4.2.3</version>
|
|
<configuration>
|
|
<excludeFilterFile>src/config/spotbugs-exclude.xml</excludeFilterFile>
|
|
</configuration>
|
|
<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>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.shredzone.maven</groupId>
|
|
<artifactId>mkdocs-maven-plugin</artifactId>
|
|
<version>1.0</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.7.3</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>5.9.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
<version>5.9.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<version>3.24.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.javacrumbs.json-unit</groupId>
|
|
<artifactId>json-unit-assertj</artifactId>
|
|
<version>2.36.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<!-- Required by json-unit-assertj -->
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>20220924</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>5.1.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.awaitility</groupId>
|
|
<artifactId>awaitility</artifactId>
|
|
<version>4.2.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|