bbottema / simple-java-mail

Simple API, Complex Emails (Jakarta Mail smtp wrapper)

Home Page:http://www.simplejavamail.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Update SLF4J and JavaMail dependencies

zimmi opened this issue · comments

The groupId for JavaMail changed, see this stackoverflow answer from the lead developer of JavaMail.
So the new maven coordinates right now are:

<dependency>
    <groupId>com.sun.mail</groupId>
    <artifactId>javax.mail</artifactId>
    <version>1.5.5</version>
</dependency>

The SLF4J dependency also got a bit stale, the most recent version right now is:

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-api</artifactId>
    <version>1.7.13</version>
</dependency>

Thanks a lot for this library, it really makes my life easier. :)

Will be fixed in v2.5,

Awesome, thanks! :)

@zimmi Release should be available in maven central now. Thanks for the help!

@bbottema Is maven central just a bit slow today or was there an error? I'm not finding it.