This commit is contained in:
parent
40e34e5fcf
commit
e9fde15d5e
2 changed files with 26 additions and 3 deletions
23
net-mail/NOTICE.txt
Normal file
23
net-mail/NOTICE.txt
Normal file
|
@ -0,0 +1,23 @@
|
|||
|
||||
This subproject is based on Jakarta Mail Reference Implementation found at
|
||||
|
||||
https://eclipse-ee4j.github.io/angus-activation/
|
||||
|
||||
Sources:
|
||||
|
||||
https://github.com/eclipse-ee4j/angus-activation
|
||||
|
||||
Angus Activation Version 2.0.2 (forked as 30 Jul 2024)
|
||||
|
||||
https://github.com/eclipse-ee4j/angus-mail
|
||||
|
||||
Angus Mail Version 2.0.3 (forked as of 30 Jul 2024)
|
||||
|
||||
The purpose of this fork is rewriting the source code to be compatible to the Java Module Platform System (JPMS)
|
||||
and to integrate "activation" and "mail" subprojects into a single dependency.
|
||||
|
||||
Licenses:
|
||||
|
||||
Eclipse Public License (EPL) v 2.0
|
||||
Eclipse Distribution License (EDL) v1.0
|
||||
BSD 3-Clause "New" or "Revised" License
|
|
@ -1,7 +1,7 @@
|
|||
module org.xbib.net.mail {
|
||||
requires java.logging;
|
||||
requires java.xml;
|
||||
requires java.security.sasl;
|
||||
requires transitive java.security.sasl;
|
||||
requires org.xbib.net.security.auth;
|
||||
exports jakarta.activation;
|
||||
exports jakarta.activation.spi;
|
||||
|
@ -19,8 +19,8 @@ module org.xbib.net.mail {
|
|||
exports org.xbib.net.mail.remote;
|
||||
exports org.xbib.net.mail.smtp;
|
||||
exports org.xbib.net.mail.util;
|
||||
opens org.xbib.net.mail.iap to org.xbib.net.mail.test;
|
||||
opens org.xbib.net.mail.util to org.xbib.net.mail.test;
|
||||
opens org.xbib.net.mail.iap;
|
||||
opens org.xbib.net.mail.util;
|
||||
uses jakarta.activation.spi.MailcapRegistryProvider;
|
||||
uses jakarta.activation.spi.MimeTypeRegistryProvider;
|
||||
uses jakarta.mail.Provider;
|
||||
|
|
Loading…
Reference in a new issue