Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ lazy val lib = project
case x =>
val oldStrategy = (assembly / assemblyMergeStrategy).value
oldStrategy(x)
}
},
// Publish the assembled fat jar for the library
Compile / packageBin := (Compile / assembly).value
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need this?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

capybaraclaw fetches tacit-library from local ivy (and in the future maven) directly. so it must be a fat jar. alternatively, we will have to download / build the jar manually to setup capybaraclaw.

)

lazy val root = project
Expand Down
Loading