scala - sbt auto-plugins - disable them but for one sub project -
switching sbt-assembly 0.11.2 0.13.0, find myself in situation calling sbt assembly
not invoke task in sub-project explicitly added assemblysettings
, tries run each , every sub project.
so, if have
lazy val root = project(...).aggregate(core, app) lazy val core = project(...) lazy val app = project(...).dependson(core)
how can disable assembly task root
project? other plugins such sbt-buildinfo problem doesn't occur because have explicitly enable plugin per sub-project.
the goal able run sbt assembly
root project.
found answer in closed issue. have add following line common settings:
aggregate in assembly := false
Comments
Post a Comment