Create standalone jar using SBT

前端 未结 5 925
孤独总比滥情好
孤独总比滥情好 2020-12-23 13:24

I was a heavy Maven user and now I\'m gradually using SBT for some of my projects.

I\'d like to know how could I use SBT to create a standalone Java project? This pr

5条回答
  •  温柔的废话
    2020-12-23 14:18

    publishLocal
    

    builds the artifact and publish in the local Ivy repository making it available for your local project dependencies.

    publishM2
    

    same as above, but the artifact is published in local Maven repo instead of Ivy repo.

提交回复
热议问题