def scalacOptionsVersion(scalaVersion: String): Seq[String] = { Seq() ++ { // If we're building with Scala > 2.11, enable the compile option // switch to support our anonymous Bundle definitions: // https://github.com/scala/bug/issues/10047 CrossVersion.partialVersion(scalaVersion) match { case Some((2, scalaMajor: Int)) if scalaMajor < 12 => Seq() case _ => Seq("-Xsource:2.11") } } } def javacOptionsVersion(scalaVersion: String): Seq[String] = { Seq() ++ { // Scala 2.12 requires Java 8. We continue to generate // Java 7 compatible code for Scala 2.11 // for compatibility with old clients. CrossVersion.partialVersion(scalaVersion) match { case Some((2, scalaMajor: Int)) if scalaMajor < 12 => Seq("-source", "1.7", "-target", "1.7") case _ => Seq("-source", "1.8", "-target", "1.8") } } } organization := "edu.berkeley.cs" version := "3.0.0" name := "chisel-tutorial" scalaVersion := "2.11.11" crossScalaVersions := Seq("2.11.11", "2.12.3") scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:reflectiveCalls") // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Map( "chisel3" -> "3.0.+", "chisel-iotesters" -> "1.1.+" ) libraryDependencies ++= (Seq("chisel3","chisel-iotesters").map { dep: String => "edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version", defaultVersions(dep)) }) resolvers ++= Seq( Resolver.sonatypeRepo("snapshots"), Resolver.sonatypeRepo("releases") ) // Recommendations from http://www.scalatest.org/user_guide/using_scalatest_with_sbt logBuffered in Test := false // Disable parallel execution when running tests. // Running tests in parallel on Jenkins currently fails. parallelExecution in Test := false scalacOptions ++= scalacOptionsVersion(scalaVersion.value) javacOptions ++= javacOptionsVersion(scalaVersion.value)