-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
25 lines (20 loc) · 894 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
// Basic settings
organization := "edu.berkeley.cs"
name := "chiselucl"
version := "0.3-SNAPSHOT"
scalaVersion := "2.12.12"
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full)
//crossScalaVersions := Nil
// Use Scala 2.11 source compatibility flag to allow anonymous bundle idiom
scalacOptions := Seq("-Xsource:2.11", "-Ywarn-unused-import")
// Enable Sonatype snapshots, if needed
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots"),
Resolver.sonatypeRepo("releases")
)
// Managed dependency on latest FIRRTL + chisel3
//libraryDependencies += "edu.berkeley.cs" %% "firrtl" % "1.2.0-RC1"
libraryDependencies += "edu.berkeley.cs" %% "firrtl" % "1.3.2"
//libraryDependencies += "edu.berkeley.cs" %% "chisel3" % "3.2.0-RC1"
libraryDependencies += "edu.berkeley.cs" %% "chisel3" % "3.3.2"
libraryDependencies += "org.json4s" %% "json4s-native" % "3.6.9"