diff options
| author | Jim Lawson | 2017-08-02 13:18:16 -0700 |
|---|---|---|
| committer | GitHub | 2017-08-02 13:18:16 -0700 |
| commit | 818d2d25e1a66147905c8bf672dc762a5df587ac (patch) | |
| tree | 89afa0fb207fc108a82a0c1c443d217af349f724 | |
| parent | 5f485e925abc0d42a93bfe9e3f932ff9e924a1a4 (diff) | |
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.
| -rw-r--r-- | build.sbt | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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( |
