mirror of
https://github.com/shred/acme4j.git
synced 2025-12-16 11:24:01 +08:00
Add module-info definitions, fix related issues
This commit is contained in:
33
acme4j-client/src/main/java/module-info.java
Normal file
33
acme4j-client/src/main/java/module-info.java
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
* acme4j - Java ACME client
|
||||
*
|
||||
* Copyright (C) 2020 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 {
|
||||
requires static com.github.spotbugs.annotations;
|
||||
requires org.jose4j;
|
||||
requires org.slf4j;
|
||||
|
||||
exports org.shredzone.acme4j;
|
||||
exports org.shredzone.acme4j.challenge;
|
||||
exports org.shredzone.acme4j.connector;
|
||||
exports org.shredzone.acme4j.exception;
|
||||
exports org.shredzone.acme4j.provider;
|
||||
exports org.shredzone.acme4j.toolbox;
|
||||
|
||||
uses org.shredzone.acme4j.provider.AcmeProvider;
|
||||
|
||||
provides org.shredzone.acme4j.provider.AcmeProvider
|
||||
with org.shredzone.acme4j.provider.GenericAcmeProvider,
|
||||
org.shredzone.acme4j.provider.letsencrypt.LetsEncryptAcmeProvider,
|
||||
org.shredzone.acme4j.provider.pebble.PebbleAcmeProvider;
|
||||
}
|
||||
Reference in New Issue
Block a user