blob: d9ec35757e3ef97b801fb06e8e87e7e60e7371f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
organization := "edu.berkeley.cs"
version := "3.0"
name := "Chisel"
scalaVersion := "2.11.6"
libraryDependencies ++= Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scalatest" % "scalatest_2.11" % "2.2.4" % "test",
"org.scalacheck" %% "scalacheck" % "1.12.4" % "test")
site.settings
site.includeScaladoc()
ghpages.settings
git.remoteRepo := "git@github.com:ucb-bar/chisel3.git"
(scalastyleConfig in Test) := baseDirectory.value / "scalastyle-test-config.xml"
|