Skip to content

Commit

Permalink
rev to 2.0.0 RC2 - RC1 DOA due to build.sbt issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sbuzzard committed Mar 10, 2019
1 parent a434df5 commit 1bc8604
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
18 changes: 13 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,10 @@ lazy val commonSettings = Seq(
githubProject := "cedi-dtrace",
parallelExecution in Global := !scala.util.Properties.propIsSet("disableParallel"),
crossScalaVersions := Seq("2.12.8", "2.11.12"),
scalacOptions ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")),
scalacOptions in Test ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")),
contributors ++= Seq(
Contributor("sbuzzard", "Steve Buzzard"),
Contributor("mpilquist", "Michael Pilquist")
),
scalacOptions ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")),
scalacOptions in Test ~= (_.filter(opt => opt != "-Xlint" && opt != "-Ywarn-unused")),
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % catsCoreVersion,
"org.typelevel" %% "cats-effect" % catsEffectVersion
Expand All @@ -39,7 +35,19 @@ lazy val commonSettings = Seq(
"org.scalacheck" %% "scalacheck" % "1.13.5" % "test"
)
}),
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.9")
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.9"),
pomExtra := (
<url>http://github.com/ccadllc/{githubProject.value}</url>
<developers>
{for (Contributor(username, name) <- contributors.value) yield
<developer>
<id>{username}</id>
<name>{name}</name>
<url>https://github.com/{username}</url>
</developer>
}
</developers>
)
)

lazy val root = project.in(file(".")).aggregate(
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "2.0.0-SNAPSHOT"
version in ThisBuild := "2.0.0-RC2"

0 comments on commit 1bc8604

Please sign in to comment.