forked from scalation/scalation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
26 lines (13 loc) · 778 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
name := "scalation"
version := "1.0"
organization := "scalation"
scalaVersion := "2.10.2"
crossScalaVersions := Seq("2.9.2", "2.9.3", "2.10.2")
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += "sbt-idea-repo" at "http://mpeltonen.github.com/maven/"
libraryDependencies <+= scalaVersion { "org.scala-lang" % "scala-swing" % _ }
libraryDependencies <+= scalaVersion { "org.scala-lang" % "scala-library" % _ }
libraryDependencies <+= scalaVersion { "org.scala-lang" % "scala-compiler" % _ }
scalacOptions ++= Seq("-unchecked", "-deprecation", "-Xexperimental")
sourceDirectory in Compile <<= baseDirectory( _ / "." )
unmanagedSourceDirectories in Compile <<= baseDirectory(base => Seq("src", "examples") map (base / _))