Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate project to use sbt-typelevel #665

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ val Slf4jVersion = "1.7.26"

lazy val scalatest = "org.scalatest" %% "scalatest" % ScalaTestVersion % Test
lazy val scalacheck = "org.scalacheck" %% "scalacheck" % "1.15.4" % Test
lazy val scalatestplus = "org.scalatestplus" %% "scalacheck-1-15" % s"${ScalaTestVersion}.0" % Test
lazy val scalatestplus = "org.scalatestplus" %% "scalacheck-1-15" % s"3.2.11.0" % Test // Cannot upgrade to 3.2.12.0 until Scalacheck 1.16.x
DavidGregory084 marked this conversation as resolved.
Show resolved Hide resolved

inThisBuild(
List(
Expand Down Expand Up @@ -128,7 +128,6 @@ lazy val unidoc = createSubModule("unidoc")
lazy val docs = createSubModule("docs")
.enablePlugins(TypelevelSitePlugin)
.settings(
tlSiteApiModule := Some((unidoc / projectID).value),
tlSiteGenerate := {
WorkflowStep.Run(
List("docker-compose up -d"),
Expand Down