Publish Cli as library (#2433)

This commit is contained in:
Ben Carman 2020-12-23 20:16:38 -06:00 committed by GitHub
parent 493673c68b
commit 336d672764
2 changed files with 3 additions and 2 deletions

View file

@ -16,5 +16,3 @@ graalVMNativeImageOptions ++= Seq(
)
enablePlugins(JavaAppPackaging, GraalVMNativeImagePlugin)
publish / skip := true

View file

@ -309,6 +309,9 @@ lazy val appServerTest = project
lazy val cli = project
.in(file("app/cli"))
.settings(CommonSettings.prodSettings: _*)
.settings(
name := "bitcoin-s-cli"
)
.dependsOn(
appCommons
)