Skip to content

Commit

Permalink
build(pollux): Fix build - Do not publish root & publish vcJWT (#118)
Browse files Browse the repository at this point in the history
Start publishing the 'vcJWT' lib
Stop publishing the 'root' lib
  • Loading branch information
FabioPinheiro authored Nov 11, 2022
1 parent ec9bd05 commit 57326d3
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions pollux/lib/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@ val commonSettings = Seq(
lazy val root = project
.in(file("."))
.settings(commonSettings)
.settings(
name := "pollux-root",
skip / publish := true
)
.aggregate(core, `sql-doobie`)
.settings(name := "pollux-root")
.aggregate(core, `sql-doobie`, vcJWT)
publish / skip := true //Do not publish the root

lazy val vcJWT = project
.in(file("vc-jwt"))
Expand Down

0 comments on commit 57326d3

Please sign in to comment.