Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[10.1.x] commons-email 1.6.0 (was 1.5) #308

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ lazy val `play-mailer` = (project in file("play-mailer"))
"javax.inject" % "javax.inject" % "1",
"com.typesafe" % "config" % "1.4.3",
"org.slf4j" % "slf4j-api" % "2.0.16",
"org.apache.commons" % "commons-email" % "1.5",
"org.apache.commons" % "commons-email" % "1.6.0",
"org.playframework" %% "play" % Dependencies.PlayVersion % Test,
"org.playframework" %% "play-specs2" % Dependencies.PlayVersion % Test
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class MailerPluginSpec extends Specification {
override def getContainer = super.getContainer
}
class MockHtmlEmail extends HtmlEmail {
def getHtml = this.html
def getText = this.text
override def getHtml = this.html
override def getText = this.text
override def getPrimaryBodyPart = super.getPrimaryBodyPart
override def getContainer = super.getContainer
}
Expand Down
Loading