[ad_1]
I’ve stumbled upon this https://blog.jetbrains.com/scala/2020/11/26/enhanced-package-prefixes/
Superficially, seems a good solution to reduce scripts and vcs long paths strings and make everything prettier for the eyes.
However, I suppose nothing comes without a price. That is what I am trying to understand better:
Is there any important disadvantage of using sbt Jetbrains/Intellij plugin for “Enhanced Package Prefixes”?
Summing up the article from my experience with the plugin, it works this way:
- add the plugin in
projects/plugin.sbt
:
addSbtPlugin("org.jetbrains" % "sbt-ide-settings" % "1.1.0")
- add to
build.sbt
idePackagePrefix := Some("org.foo.bar")
[ad_2]