From fee774e0e4bccf3f1eb7d01cb1dc202e58ef58d9 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 16 Oct 2023 22:37:34 +0000 Subject: [PATCH] bump: sbt-web 1.5.1 (was 1.4.4) --- project/Dependencies.scala | 12 ++++++------ project/plugins.sbt | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 636b75c6..af2f5430 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -22,7 +22,7 @@ object Version { val pegdown = "1.6.0" val parboiled = "1.4.1" val prettify = "4-Mar-2013-1" - val sbtWeb = "1.4.4" + val sbtWeb = "1.5.1" val scalatest = "3.2.17" val st4 = "4.3.4" val jsoup = "1.16.1" @@ -35,9 +35,9 @@ object Library { "org.pegdown" % "pegdown" % Version.pegdown, "org.parboiled" % "parboiled-java" % Version.parboiled // overwrite for JDK10 support ) - val prettify = "org.webjars" % "prettify" % Version.prettify - val sbtWeb = "com.typesafe.sbt" % "sbt-web" % Version.sbtWeb - val scalatest = "org.scalatest" %% "scalatest" % Version.scalatest - val st4 = "org.antlr" % "ST4" % Version.st4 - val jsoup = "org.jsoup" % "jsoup" % Version.jsoup + val prettify = "org.webjars" % "prettify" % Version.prettify + val sbtWeb = "com.github.sbt" % "sbt-web" % Version.sbtWeb + val scalatest = "org.scalatest" %% "scalatest" % Version.scalatest + val st4 = "org.antlr" % "ST4" % Version.st4 + val jsoup = "org.jsoup" % "jsoup" % Version.jsoup } diff --git a/project/plugins.sbt b/project/plugins.sbt index 01158000..9a4d28fd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -29,7 +29,7 @@ lazy val metaThemePlugin = (project in file("theme-plugin")) .settings( sbtPlugin := true, scalaVersion := "2.12.18", - addSbtPlugin("com.typesafe.sbt" % "sbt-web" % "1.4.4"), + addSbtPlugin("com.github.sbt" % "sbt-web" % "1.5.1"), Compile / unmanagedSourceDirectories := mirrorScalaSource((ThisBuild / baseDirectory).value.getParentFile / "theme-plugin") )