bbottema/simple-java-mail

Update SLF4J and JavaMail dependencies

zimmi opened this issue · 5 comments

zimmi commented

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,

zimmi commented

Awesome, thanks! :)

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

zimmi commented

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