Skip to content

Commit 02a6ab4

Browse files
authored
Merge pull request #89 from scala-exercises/enrique-2-13-1-update
Added joda-time dependency
2 parents f0d692a + a9dddc2 commit 02a6ab4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

project/ProjectPlugin.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ object ProjectPlugin extends AutoPlugin {
2525
lazy val log4s = "1.7.0"
2626
lazy val scalatest = "3.1.0"
2727
lazy val scalatestplusScheck = "3.1.0.0-RC2"
28+
lazy val jodaTime = "2.10.5"
2829
lazy val slf4jSimple = "1.7.30"
2930
lazy val jwtCore = "4.2.0"
3031
lazy val coursier = "2.0.0-RC5-6"
@@ -51,7 +52,8 @@ object ProjectPlugin extends AutoPlugin {
5152
},
5253
imageNames in docker := Seq(
5354
ImageName(repository =
54-
s"registry.heroku.com/${sys.props.getOrElse("evaluator.heroku.name", "scala-evaluator")}/web")
55+
s"registry.heroku.com/${sys.props.getOrElse("evaluator.heroku.name", "scala-evaluator")}/web"
56+
)
5557
)
5658
)
5759

@@ -78,7 +80,8 @@ object ProjectPlugin extends AutoPlugin {
7880
%%("coursier-cache", V.coursier),
7981
"io.get-coursier" %% "coursier-cats-interop" % V.coursier,
8082
%%("scalatest", V.scalatest),
81-
"org.scalatestplus" %% "scalatestplus-scalacheck" % V.scalatestplusScheck
83+
"org.scalatestplus" %% "scalatestplus-scalacheck" % V.scalatestplusScheck,
84+
"joda-time" % "joda-time" % V.jodaTime
8285
)
8386
)
8487

0 commit comments

Comments
 (0)