Skip to content

Commit

Permalink
Merge pull request #84 from Kevin-Lee/fix-config
Browse files Browse the repository at this point in the history
Minor change in build.sbt
  • Loading branch information
kevin-lee authored Sep 28, 2019
2 parents 08cfd91 + e08838d commit ca5f05d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ lazy val justFp = (project in file("."))
else
Seq(sharedSourceDir / "scala-2.10_2.11")
}
, resolvers += Resolver.sonatypeRepo("releases")
, resolvers ++= Seq(
Resolver.sonatypeRepo("releases")
, Deps.hedgehogRepo
)
, addCompilerPlugin("org.typelevel" % "kind-projector" % "0.10.3" cross CrossVersion.binary)
, wartremoverErrors in (Compile, compile) ++= commonWarts
, wartremoverErrors in (Test, compile) ++= commonWarts
, resolvers += Deps.hedgehogRepo
, libraryDependencies ++= Deps.hedgehogLibs
, dependencyOverrides ++= crossVersionProps(Seq.empty[ModuleID], SemanticVersion.parseUnsafe(scalaVersion.value)) {
case (Major(2), Minor(10)) =>
Expand Down

0 comments on commit ca5f05d

Please sign in to comment.