Skip to content

Commit

Permalink
Merge pull request #603 from rossabaker/discipline-core
Browse files Browse the repository at this point in the history
Laws depend only on discipline-core
  • Loading branch information
djspiewak authored Aug 7, 2019
2 parents 7451e28 + b363826 commit 1703bbe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ val CatsVersion = "2.0.0-RC1"
val ScalaTestVersion = "3.1.0-SNAP13"
val ScalaTestPlusScalaCheckVersion = "1.0.0-SNAP8"
val ScalaCheckVersion = "1.14.0"
val DisciplineCoreVersion = "1.0.0"
val DisciplineScalatestVersion = "1.0.0-M1"

addCommandAlias("ci", ";test ;mimaReportBinaryIssues; doc")
Expand Down Expand Up @@ -285,7 +286,8 @@ lazy val laws = crossProject(JSPlatform, JVMPlatform)
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-laws" % CatsVersion,
"org.scalacheck" %%% "scalacheck" % ScalaCheckVersion,
"org.typelevel" %%% "discipline-scalatest" % DisciplineScalatestVersion,
"org.typelevel" %%% "discipline-core" % DisciplineCoreVersion,
"org.typelevel" %%% "discipline-scalatest" % DisciplineScalatestVersion % Test,
"org.scalatest" %%% "scalatest" % ScalaTestVersion % Test))

.jvmConfigure(_.enablePlugins(AutomateHeaderPlugin))
Expand Down

0 comments on commit 1703bbe

Please sign in to comment.