Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
obruchez committed Nov 25, 2024
1 parent 9749c4c commit 28a6bef
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 22 deletions.
22 changes: 11 additions & 11 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ libraryDependencies ++= Seq(jdbc, ehcache, ws)
libraryDependencies ++= Seq(
guice,
"com.github.rjeschke" % "txtmark" % "0.13",
"com.google.apis" % "google-api-services-blogger" % "v3-rev82-1.25.0",
"com.google.api-client" % "google-api-client" % "1.35.2",
"com.google.http-client" % "google-http-client" % "1.42.3",
"com.google.http-client" % "google-http-client-jackson2" % "1.42.3",
"com.google.oauth-client" % "google-oauth-client" % "1.34.1",
"com.google.oauth-client" % "google-oauth-client-java6" % "1.34.1",
"com.google.oauth-client" % "google-oauth-client-jetty" % "1.34.1",
"joda-time" % "joda-time" % "2.12.2",
"org.apache.commons" % "commons-text" % "1.10.0",
"org.jsoup" % "jsoup" % "1.15.4",
"org.scalatestplus.play" %% "scalatestplus-play" % "5.1.0" % Test
"com.google.apis" % "google-api-services-blogger" % "v3-rev20221220-2.0.0",
"com.google.api-client" % "google-api-client" % "2.6.0",
"com.google.http-client" % "google-http-client" % "1.44.1",
"com.google.http-client" % "google-http-client-jackson2" % "1.44.2",
"com.google.oauth-client" % "google-oauth-client" % "1.35.0",
"com.google.oauth-client" % "google-oauth-client-java6" % "1.35.0",
"com.google.oauth-client" % "google-oauth-client-jetty" % "1.36.0",
"joda-time" % "joda-time" % "2.12.7",
"org.apache.commons" % "commons-text" % "1.11.0",
"org.jsoup" % "jsoup" % "1.18.1",
"org.scalatestplus.play" %% "scalatestplus-play" % "7.0.1" % Test
)

routesGenerator := InjectedRoutesGenerator
Expand Down
14 changes: 3 additions & 11 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/"

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

addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.1.4")
addSbtPlugin("com.typesafe.sbt" % "sbt-jshint" % "1.0.6")
addSbtPlugin("com.typesafe.sbt" % "sbt-less" % "1.1.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-mocha" % "1.1.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-rjs" % "1.0.10")

addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("com.beautiful-scala" % "sbt-scalastyle" % "1.5.1")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.5")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always

0 comments on commit 28a6bef

Please sign in to comment.