-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sbt
42 lines (30 loc) · 1.17 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import de.johoop.jacoco4sbt._
import JacocoPlugin._
organization := "com.github.jedesah"
name := "scala-insight"
version := "0.7.0-SNAPSHOT"
scalaVersion := "2.10.4-20131126-231426-da7395016c"
seq(bintrayPublishSettings:_*)
seq(bintrayResolverSettings:_*)
licenses += ("GPL-3.0", url("http://www.gnu.org/copyleft/gpl.html"))
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % scalaVersion.value,
"com.github.nscala-time" % "nscala-time_2.10" % "0.6.0",
"com.chuusai" % "shapeless_2.10.3" % "2.0.0-SNAPSHOT" changing(),
"org.scalacheck" % "scalacheck_2.10" % "1.11.1",
"org.specs2" % "specs2_2.10" % "2.3.6" % "test"
)
jacoco.settings
resolvers ++= Seq(
"Sonatype OSS Releases" at "http://oss.sonatype.org/content/repositories/releases/",
"Sonatype OSS Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/",
bintray.Opts.resolver.repo("jedesah", "maven")
)
//scalacOptions ++= Seq("-feature")
initialCommands in console := """
import com.github.jedesah.codesheet.api.ScalaCodeSheet
import scala.reflect.runtime.{currentMirror => cm}
import scala.reflect.runtime.universe._
import scala.tools.reflect.ToolBox
val tb = cm.mkToolBox()
"""