Skip to content

Commit

Permalink
Ensure that simulacrum does not appear in the .pom
Browse files Browse the repository at this point in the history
  • Loading branch information
rklaehn committed Jan 13, 2016
1 parent 4d86e81 commit 2f11a6c
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 @@ -20,13 +20,15 @@ lazy val commonScalacOptions = Seq(
)

lazy val hashSettings = Seq(
ivyConfigurations += config("compileonly").hide,
unmanagedClasspath in Compile ++= update.value.select(configurationFilter("compileonly")),
scalacOptions ++= commonScalacOptions,
organization := "com.rklaehn",
scalaVersion := "2.11.7",
crossScalaVersions := Seq("2.10.5", "2.11.7"),
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0-M5" cross CrossVersion.full),
libraryDependencies ++= Seq(
"com.github.mpilquist" %% "simulacrum" % "0.5.0" % "provided",
"com.github.mpilquist" %% "simulacrum" % "0.5.0" % "compileonly",
"org.spire-math" %% "cats" % "0.3.0",
"org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided",

Expand Down

0 comments on commit 2f11a6c

Please sign in to comment.