mirror of
https://github.com/shred/acme4j.git
synced 2025-12-13 11:14:02 +08:00
The separation of acme4j-client and acme4j-utils was a design decision that should avoid BouncyCastle to be a hard dependency of acme4j-client. Anyhow acme4j is not really usable without BouncyCastle, so acme4j-utils is used in almost all projects anyway. This merge allows to extend the client API with some nice methods that will make it easier to use.
65 lines
2.2 KiB
XML
65 lines
2.2 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>
|
|
|
|
<parent>
|
|
<groupId>org.shredzone.acme4j</groupId>
|
|
<artifactId>acme4j</artifactId>
|
|
<version>3.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>acme4j-smime</artifactId>
|
|
|
|
<name>acme4j S/MIME</name>
|
|
<description>acme4j S/MIME extension</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.shredzone.acme4j</groupId>
|
|
<artifactId>acme4j-client</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk18on</artifactId>
|
|
<version>${bouncycastle.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcpkix-jdk18on</artifactId>
|
|
<version>${bouncycastle.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcjmail-jdk18on</artifactId>
|
|
<version>${bouncycastle.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.mail</groupId>
|
|
<artifactId>jakarta.mail</artifactId>
|
|
<version>${jakarta.mail.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|