sbt/build.sbt

22 lines
630 B
Plaintext
Raw Normal View History

2011-11-29 15:23:41 +01:00
seq(lsSettings :_*)
2013-07-22 16:02:49 +02:00
crossBuildingSettings
CrossBuilding.crossSbtVersions := Seq("0.11.1", "0.11.2", "0.11.3", "0.12", "0.13")
CrossBuilding.scriptedSettings
libraryDependencies += "com.github.mdr" %% "ascii-graphs" % "0.0.3"
2013-07-22 16:12:10 +02:00
2013-07-22 16:24:15 +02:00
libraryDependencies <++= scalaVersion { version =>
if (version startsWith "2.1") Seq("org.scala-lang" % "scala-reflect" % version % "provided")
else Nil
}
libraryDependencies <+= scalaVersion { version =>
if (version startsWith "2.9") "org.specs2" % "specs2_2.9.3" % "1.12.4.1" % "test"
else "org.specs2" %% "specs2" % "2.1.1" % "test"
}
2013-07-22 16:12:10 +02:00
scalacOptions ++= Seq("-deprecation", "-unchecked")