I want to use sbt to publish my project.
I am used to maven and need some help (mentally).
By default, I see that "publication" depends on the "package", but the "package" does not depend on the "test". Of course, I only want to publish the verified code. How should I provide this?
Of course, I could depend on the test depending on the test , but the fact that this is not a default sort suggests that this is not an idiomatic use of sbt. What would be the โrightโ way to achieve this?
How to learn more about best practices?
source share