Skip to content

Commit

Permalink
Don't publish aggregates (#830)
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Quiroz <[email protected]>
  • Loading branch information
julien-truffaut authored Mar 5, 2020
1 parent d3b97b6 commit 0788241
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,14 @@ lazy val monocleJsSettings = monocleSettings ++ scalajsSettings

lazy val monocle = project.in(file("."))
.settings(moduleName := "monocle")
.settings(noPublishSettings)
.settings(monocleSettings)
.aggregate(monocleJVM, monocleJS)
.dependsOn(monocleJVM, monocleJS)

lazy val monocleJVM = project.in(file(".monocleJVM"))
.settings(monocleJvmSettings)
.settings(noPublishSettings)
.aggregate(
core.jvm, generic.jvm, law.jvm, macros.jvm, state.jvm, refined.jvm, unsafe.jvm, test.jvm,
example, docs, bench)
Expand All @@ -146,6 +148,7 @@ lazy val monocleJVM = project.in(file(".monocleJVM"))

lazy val monocleJS = project.in(file(".monocleJS"))
.settings(monocleJsSettings)
.settings(noPublishSettings)
.aggregate(core.js, generic.js, law.js, macros.js, state.js, refined.js, unsafe.js, test.js)
.dependsOn(core.js, generic.js, law.js, macros.js, state.js, refined.js, unsafe.js, test.js % "test-internal -> test")

Expand Down

0 comments on commit 0788241

Please sign in to comment.