All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.acme4j.acme4j-smime.2.15.source-code.module-info Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
/*
 * acme4j - Java ACME client
 *
 * Copyright (C) 2021 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.
 */

module org.shredzone.acme4j.smime {
    requires org.shredzone.acme4j;
    requires org.shredzone.acme4j.utils;

    requires transitive jakarta.mail;
    requires static com.github.spotbugs.annotations;
    requires org.bouncycastle.util;
    requires org.bouncycastle.mail;
    requires org.bouncycastle.pkix;
    requires org.bouncycastle.provider;
    requires org.slf4j;

    exports org.shredzone.acme4j.smime;
    exports org.shredzone.acme4j.smime.challenge;
    exports org.shredzone.acme4j.smime.csr;
    exports org.shredzone.acme4j.smime.email;
    exports org.shredzone.acme4j.smime.exception;

    provides org.shredzone.acme4j.provider.ChallengeProvider
            with org.shredzone.acme4j.smime.challenge.EmailReply00ChallengeProvider;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy