You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Build.scala when I change mainClass in Compile := Some("my.app.class") to mainClass in (Compile, run) := Some("my.app.class"), after calling stage there are no boot scripts in /bin anymore. If I change it back, they get generated again.
The text was updated successfully, but these errors were encountered:
mainClass in Compile sets the main class for the compile step. mainClass in (Compile, run) sets the main class during theruntask inside theCompilescope. So this main class is only used, when you callrun(which iscompile:run`).
In Build.scala when I change
mainClass in Compile := Some("my.app.class")
tomainClass in (Compile, run) := Some("my.app.class")
, after callingstage
there are no boot scripts in /bin anymore. If I change it back, they get generated again.The text was updated successfully, but these errors were encountered: