Skip to content

Commit

Permalink
Revert a failed dependency upgrade/switch
Browse files Browse the repository at this point in the history
Switching from jakarta.mail (which does not have recent releases) to jaka.mail-api (which has recent releases) was done by accident, as the API does not provide any implementation that is required for actually sending mails.
  • Loading branch information
sabieber committed Apr 26, 2024
1 parent 17f0da4 commit 8b65768
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@

<!-- Used to send and receive mails -->
<dependency>
<groupId>jakarta.mail</groupId>
<artifactId>jakarta.mail-api</artifactId>
<version>2.1.3</version>
<groupId>com.sun.mail</groupId>
<artifactId>jakarta.mail</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>jakarta.activation</groupId>
Expand Down

0 comments on commit 8b65768

Please sign in to comment.