Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed Feb 12, 2024
1 parent 02fdffc commit 1f71842
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ lazy val plugin = project("sbt-paradox-material-theme", file("plugin"))
scriptedLaunchOpts += "-Dproject.version=" + version.value,
scriptedBufferLog := false,
publishLocal := publishLocal.dependsOn(theme / publishLocal).value,
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.4.4"),
libraryDependencies += "org.jsoup" % "jsoup" % "1.10.3",
libraryDependencies += "io.circe" %% "circe-core" % "0.9.3",
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.9.2"),
libraryDependencies += "org.jsoup" % "jsoup" % "1.17.2",
libraryDependencies += "io.circe" %% "circe-core" % "0.14.5",
update := update.dependsOn(theme / publishLocal).value,
Compile / resourceGenerators += Def.task {
val file = (Compile / resourceManaged).value / "paradox-material-theme.properties"
Expand Down
9 changes: 4 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.4.4")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-theme" % "0.4.4")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.9.2")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-theme" % "0.9.2")
addSbtPlugin("com.github.sbt" % "sbt-site" % "1.5.0")
addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.8.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.23.0")

libraryDependencies += "org.scala-sbt" %% "scripted-plugin" % sbtVersion.value

// This project is its own plugin :)
Compile / unmanagedSourceDirectories += baseDirectory.value.getParentFile / "plugin" / "src" / "main" / "scala"
libraryDependencies += "org.jsoup" % "jsoup" % "1.10.3"
libraryDependencies += "io.circe" %% "circe-core" % "0.8.0"
libraryDependencies += "org.jsoup" % "jsoup" % "1.17.2"
libraryDependencies += "io.circe" %% "circe-core" % "0.14.5"

0 comments on commit 1f71842

Please sign in to comment.