Skip to content

Commit

Permalink
Update sbt, joda, postgres dependencies
Browse files Browse the repository at this point in the history
Sbt updates:

- sbt: 1.6.2 to 1.7.1
- com.typesafe.play:sbt-plugin: 2.8.15 to 2.8.16

Dependency updates:

- org.postgresql:postgresql: 42.3.4 to 42.4.2
- joda-time:joda-time: 2.10.14 to 2.11.1
  • Loading branch information
ljdelight authored and jschwarz2030 committed Sep 21, 2022
1 parent 30330cc commit 1c2f715
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,14 @@ libraryDependencies ++= Seq(

"org.playframework.anorm" %% "anorm" % "2.6.10",
"org.playframework.anorm" %% "anorm-postgres" % "2.6.10",
"org.postgresql" % "postgresql" % "42.3.4",
"org.postgresql" % "postgresql" % "42.4.2",
"net.postgis" % "postgis-jdbc" % "2021.1.0",
"joda-time" % "joda-time" % "2.10.14",
"joda-time" % "joda-time" % "2.11.1",
// TODO(ljdelight): The vividsolutions package was moved to the Eclipse Foundation as LocationTech.
// See the upgrade guide https://github.com/locationtech/jts/blob/master/MIGRATION.md
"com.vividsolutions" % "jts" % "1.13",

// NOTE: jts2geojson:0.16.0 uses jackson-databind:2.12.2 which is incompatible with play 2.8.x (requires 2.11.x)
"org.wololo" % "jts2geojson" % "0.14.3",
"org.apache.commons" % "commons-lang3" % "3.12.0",
"commons-codec" % "commons-codec" % "1.14",
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.6.2
sbt.version=1.7.1
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ resolvers ++= Seq(

addDependencyTreePlugin

addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.15")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.16")

addSbtPlugin("com.typesafe.sbt" % "sbt-gzip" % "1.0.2")

Expand Down

0 comments on commit 1c2f715

Please sign in to comment.