1
0

Bump scala to 2.10.2, sbt to 0.13-RC2, including new launcher. Upgrade reflection in network.scala to 2.10 lib. Constants now obtained from subproject package objects. Give network its own file.

This commit is contained in:
Henry Cook
2013-07-24 23:28:43 -07:00
parent 3f874342a4
commit 4d916b56e3
8 changed files with 241 additions and 217 deletions

1
project/build.properties Normal file
View File

@ -0,0 +1 @@
sbt.version=0.13.0-RC2

View File

@ -6,14 +6,16 @@ import Keys._
object BuildSettings extends Build {
val buildOrganization = "berkeley"
val buildVersion = "1.1"
val buildScalaVersion = "2.9.2"
val buildScalaVersion = "2.10.2"
val buildSettings = Defaults.defaultSettings ++ Seq (
//unmanagedBase <<= baseDirectory { base => base / ".." / custom_lib" },
organization := buildOrganization,
version := buildVersion,
scalaVersion := buildScalaVersion,
traceLevel := 15
traceLevel := 15,
scalacOptions ++= Seq("-deprecation","-unchecked"),
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
)
lazy val chisel = Project("chisel", file("chisel"), settings = buildSettings)