Skip to content

Commit fab9d54

Browse files
Benny BottemaBenny Bottema
Benny Bottema
authored and
Benny Bottema
committed
#225: added Jakarta Activation as first class dependency, as Simple Java Mail depends on it explicitly besides Jakarta JavaMail
1 parent 1c5d6a4 commit fab9d54

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Diff for: NOTICE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
This product uses the following external (Open Source) libraries:
1212

13-
- activation package from jre6
1413
- SLF4J (http://http://www.slf4j.org/)
1514
- Sun Java Mail API, shipped with JavaEE or as seperate download) (http://java.sun.com/products/javamail/)
15+
- Jakarta Activation (https://eclipse-ee4j.github.io/jaf/)
1616
- Email Validation regular expressions, by Les Hazlewood, Casey Connor, Benny Bottema (https://github.com/bbottema/email-rfc2822-validator)
1717
- DKIM signing library https://github.com/markenwerk/java-utils-mail-dkim (based on https://github.com/usrflo/DKIM-for-JavaMail)
1818
- Outlook Message Parser https://github.com/bbottema/outlook-message-parser (based on http://auxilii.com/msgparser/)

Diff for: pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,16 @@
8383
<artifactId>jakarta.mail</artifactId>
8484
<version>1.6.3</version>
8585
</dependency>
86+
<dependency>
87+
<groupId>com.sun.activation</groupId>
88+
<artifactId>jakarta.activation</artifactId>
89+
<version>1.2.1</version>
90+
</dependency>
91+
<dependency>
92+
<groupId>com.sun.mail</groupId>
93+
<artifactId>jakarta.mail</artifactId>
94+
<version>1.6.3</version>
95+
</dependency>
8696
<dependency>
8797
<groupId>com.github.bbottema</groupId>
8898
<artifactId>emailaddress-rfc2822</artifactId>

0 commit comments

Comments
 (0)