// See LICENSE for license details.
// sbt-site - sbt-ghpages
enablePlugins(SiteScaladocPlugin)
enablePlugins(GhpagesPlugin)
git.remoteRepo := "git@github.com:freechipsproject/firrtl.git"
// Firrtl code
organization := "edu.berkeley.cs"
name := "firrtl"
version := "1.2-SNAPSHOT"
scalaVersion := "2.11.12"
crossScalaVersions := Seq("2.11.12", "2.12.4")
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: Long)) if scalaMajor < 12 => Seq()
case _ => Seq("-Xsource:2.11")
}
}
}
scalacOptions := scalacOptionsVersion(scalaVersion.value) ++ Seq(
"-deprecation"
)
def javacOptionsVersion(scalaVersion: String): Seq[String] = {
Seq() ++ {
// Scala 2.12 requires Java 8, but we continue to generate
// Java 7 compatible code until we need Java 8 features
// for compatibility with old clients.
CrossVersion.partialVersion(scalaVersion) match {
case Some((2, scalaMajor: Long)) if scalaMajor < 12 =>
Seq("-source", "1.7", "-target", "1.7")
case _ =>
Seq("-source", "1.8", "-target", "1.8")
}
}
}
javacOptions ++= javacOptionsVersion(scalaVersion.value)
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.7.2"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % "test"
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.13.4" % "test"
libraryDependencies += "com.github.scopt" %% "scopt" % "3.6.0"
libraryDependencies += "net.jcazevedo" %% "moultingyaml" % "0.4.0"
libraryDependencies += "org.json4s" %% "json4s-native" % "3.5.3"
// Assembly
assemblyJarName in assembly := "firrtl.jar"
test in assembly := {} // Should there be tests?
assemblyOutputPath in assembly := file("./utils/bin/firrtl.jar")
// ANTLRv4
enablePlugins(Antlr4Plugin)
antlr4GenVisitor in Antlr4 := true // default = false
antlr4GenListener in Antlr4 := false // default = true
antlr4PackageName in Antlr4 := Option("firrtl.antlr")
antlr4Version in Antlr4 := "4.7.1"
javaSource in Antlr4 := (sourceManaged in Compile).value
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { x => false }
// Don't add 'scm' elements if we have a git.remoteRepo definition.
pomExtra := http://chisel.eecs.berkeley.edu/
BSD-style
http://www.opensource.org/licenses/bsd-license.php
repo
jackbackrack
Jonathan Bachrach
http://www.eecs.berkeley.edu/~jrb/
publishTo := {
val v = version.value
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT")) {
Some("snapshots" at nexus + "content/repositories/snapshots")
} else {
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
}
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots"),
Resolver.sonatypeRepo("releases")
)
// ScalaDoc
enablePlugins(ScalaUnidocPlugin)
doc in Compile := (doc in ScalaUnidoc).value
//target in unidoc in ScalaUnidoc := crossTarget.value / "api"
autoAPIMappings := true
scalacOptions in Compile in doc ++= Seq(
"-diagrams",
"-diagrams-max-classes", "25",
"-doc-version", version.value,
"-doc-title", name.value,
"-doc-root-content", baseDirectory.value+"/root-doc.txt"
) ++ scalacOptionsVersion(scalaVersion.value)