standardizing sbt build conventions
This commit is contained in:
parent
17d404b325
commit
3763cd0004
6
uncore/README
Normal file
6
uncore/README
Normal file
@ -0,0 +1,6 @@
|
||||
This is the repository for uncore components assosciated with UCB_BAR chip
|
||||
projects. To uses these modules, include this repo as a git submodule within
|
||||
the your chip repository and add it as Project in your chip's build.scala.
|
||||
These components are only dependent on Chisel, i.e.
|
||||
lazy val uncore = Project("uncore", file("uncore"), settings = buildSettings) dependsOn(chisel)
|
||||
|
14
uncore/build.sbt
Normal file
14
uncore/build.sbt
Normal file
@ -0,0 +1,14 @@
|
||||
organization := "edu.berkeley.cs"
|
||||
|
||||
version := "2.0"
|
||||
|
||||
name := "uncore"
|
||||
|
||||
scalaVersion := "2.10.2"
|
||||
|
||||
resolvers ++= Seq(
|
||||
"Sonatype Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
|
||||
"Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases"
|
||||
)
|
||||
|
||||
libraryDependencies += "edu.berkeley.cs" %% "chisel" % "2.0"
|
Loading…
Reference in New Issue
Block a user