summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Lawson2016-06-03 12:40:44 -0700
committerJim Lawson2016-06-03 12:40:44 -0700
commit807184b08968e3c84abf21311e082151267b983b (patch)
tree334f3008e96ca8c2c18a68d3029478f84e1d9994
parent9dd286b8613beba58e053ed00d15877d3a4b02c9 (diff)
Update publishing dependencies
Until we sort out how to include the subproject classes in a single jar file, we need to explicitly publish all subprojects.
-rw-r--r--build.sbt5
1 files changed, 2 insertions, 3 deletions
diff --git a/build.sbt b/build.sbt
index 900cb5c6..b9950b6f 100644
--- a/build.sbt
+++ b/build.sbt
@@ -106,7 +106,6 @@ lazy val chisel = (project in file(".")).
)
// This is ugly. There must be a better way.
-publish <<= (publish) dependsOn (publish in chiselFrontend)
-
-publishLocal <<= (publishLocal) dependsOn (publishLocal in chiselFrontend)
+publish <<= (publish) dependsOn (publish in coreMacros, publish in chiselFrontend)
+publishLocal <<= (publishLocal) dependsOn (publishLocal in coreMacros, publishLocal in chiselFrontend)