1
0

standardizing sbt build conventions

This commit is contained in:
Henry Cook 2013-08-15 15:57:16 -07:00
parent 17d404b325
commit 3763cd0004
11 changed files with 20 additions and 0 deletions

6
uncore/README Normal file
View 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
View 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"