如何打包使用sbt扩展App的类?

时间:2015-08-25 19:55:23

标签: scala sbt

我需要测试一个使用stdin的模块。该模块有一个main和一个扩展App的类。有没有办法只构建和打包扩展App的类?

1 个答案:

答案 0 :(得分:2)

built.sbt中设置主类,以便将特定的类或对象用作程序的主条目。

mainClass in (Compile, run) := Some("Package.Main")

如果您只想打包特定的主类并从包装中排除其他主类,请参阅excludeFilter选项。