From 520925c207d947dc7a28e51b981f22ef5efa78fd Mon Sep 17 00:00:00 2001 From: Howard Mao Date: Tue, 10 Nov 2015 13:38:39 -0800 Subject: [PATCH] fix up build.sbt and add gitignore --- groundtest/.gitignore | 1 + groundtest/build.sbt | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 groundtest/.gitignore diff --git a/groundtest/.gitignore b/groundtest/.gitignore new file mode 100644 index 00000000..eb5a316c --- /dev/null +++ b/groundtest/.gitignore @@ -0,0 +1 @@ +target diff --git a/groundtest/build.sbt b/groundtest/build.sbt index 59241fe4..120a2611 100644 --- a/groundtest/build.sbt +++ b/groundtest/build.sbt @@ -1,10 +1,10 @@ organization := "edu.berkeley.cs" -version := "1.2" +version := "1.0" name := "groundtest" scalaVersion := "2.11.6" -libraryDependencies ++= (Seq("chisel", "hardfloat", "uncore", "junctions", "rocket").map { +libraryDependencies ++= (Seq("chisel", "uncore", "junctions", "rocket").map { dep: String => sys.props.get(dep + "Version") map { "edu.berkeley.cs" %% dep % _ }}).flatten