-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.scala
28 lines (25 loc) · 866 Bytes
/
build.scala
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
import sbt._
import Keys._
object build extends Build {
val sharedSettings = Defaults.defaultSettings ++ Seq(
organization := "com.github.retronym",
version := "0.2-SNAPSHOT",
// scalaHome := Some(file(System.getProperty("user.home")) / "usr" / "scala-kepler"),
//scalaVersion := "2.10.0-SNAPSHOT",
scalaVersion := "2.10.1",
scalacOptions ++= Seq(), // Seq("-Xlog-free-terms", "-unchecked", /*, "-Ymacro-debug"*/),
resolvers += "sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
libraryDependencies <+= (scalaVersion)("org.scala-lang" % "scala-compiler" % _)
)
lazy val root = Project(
id = "macrocosm",
base = file("."),
settings = sharedSettings,
dependencies = Seq(ground)
)
lazy val ground = Project(
id = "macrocosm-ground",
base = file("ground"),
settings = sharedSettings
)
}