-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
28 lines (17 loc) · 901 Bytes
/
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
name := "scala-examples-null"
version := "1.0"
scalaOrganization := "org.scala-lang"
scalaVersion := "2.11.7"
crossVersion := CrossVersion.full
scalacOptions ++= Seq("-feature", "-deprecation", "-unchecked", "-explaintypes", "-Xlint", "-Yinline-warnings", "-optimise")
resolvers += "hiroshi-cl" at "https://hiroshi-cl.github.io/sbt-repos/"
addCompilerPlugin("jp.ac.u_tokyo.i.ci.csg.hiroshi_yamaguchi" % "core_plugin" % "3.0.0-SNAPSHOT" cross CrossVersion.full)
libraryDependencies <++= (scalaOrganization, scalaVersion) { (org, ver) => Seq(
org % "scala-compiler" % ver,
org % "scala-library" % ver,
org % "scala-reflect" % ver
)
}
libraryDependencies += "jp.ac.u_tokyo.i.ci.csg.hiroshi_yamaguchi" % "core_engine" % "3.0.0-SNAPSHOT" cross CrossVersion.full
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.6" % Test
libraryDependencies += "junit" % "junit" % "4.12" % Test