From 818d2d25e1a66147905c8bf672dc762a5df587ac Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Wed, 2 Aug 2017 13:18:16 -0700 Subject: Disable aggregation until we can apply it selectively (#660) or sbt-scoverage is updated to deal with dependencies. Unfortunately, enabling this revives the publishing of the coreMacros and chiselFrontend jars and we don't want that.--- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'build.sbt') diff --git a/build.sbt b/build.sbt index 9c909399..01cb60be 100644 --- a/build.sbt +++ b/build.sbt @@ -120,7 +120,8 @@ lazy val chisel = (project in file(".")). dependsOn(coreMacros % "compile-internal;test-internal"). dependsOn(chiselFrontend % "compile-internal;test-internal"). // The following is required until sbt-scoverage correctly deals with inDependencies - aggregate(coreMacros, chiselFrontend). + // Unfortunately, it also revives publishing of the subproject jars. Disable until the latter is resolved (again). + //aggregate(coreMacros, chiselFrontend). settings( scalacOptions in Test ++= Seq("-language:reflectiveCalls"), scalacOptions in Compile in doc ++= Seq( -- cgit v1.2.3