1
0
Fork 0

Add dependency resolvers to build.scala to fix build script

This commit is contained in:
Stephen Twigg 2013-09-05 14:56:41 -07:00
parent 6aa500fc16
commit 69daae0dae
1 changed files with 6 additions and 1 deletions

View File

@ -17,7 +17,12 @@ object BuildSettings extends Build {
scalacOptions ++= Seq("-deprecation","-unchecked"),
libraryDependencies ++= Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value,
"edu.berkeley.cs" %% "chisel" % "2.1-SNAPSHOT",
"edu.berkeley.cs" %% "hardfloat" % "1.2")
"edu.berkeley.cs" %% "hardfloat" % "1.2"),
resolvers ++= Seq(
"Sonatype Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases",
"scct-github-repository" at "http://mtkopone.github.com/scct/maven-repo"
)
)
lazy val hwacha = Project("hwacha", file("hwacha"), settings = buildSettings)