Skip to content

Commit

Permalink
Upgrade dependencies across the board (sbt#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
sirthias committed Jul 8, 2019
1 parent 2d57fe0 commit 4ef483b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ lazy val theme = project("paradox-material-theme", file("theme"))
libraryDependencies += "org.webjars" % "prettify" % "4-Mar-2013-1" % Provided,
libraryDependencies +=
Seq("animation", "base", "ripple", "rtl", "theme", "typography")
.foldLeft("org.webjars.npm" % "material__tabs" % "0.3.1" % Provided) {
.foldLeft("org.webjars.npm" % "material__tabs" % "0.37.1" % Provided) {
(lib, dep) => lib.exclude("org.webjars.npm", s"material__$dep")
}
)
Expand Down
18 changes: 9 additions & 9 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.4.4")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-theme" % "0.4.4")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.3.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.2")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.6")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.6.0")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-theme" % "0.6.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.11")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2-1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.5")

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

// This project is its own plugin :)
unmanagedSourceDirectories in Compile += 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.12.1"
libraryDependencies += "io.circe" %% "circe-core" % "0.11.1"

0 comments on commit 4ef483b

Please sign in to comment.