Sbt 处理子项目
例如,我有项目 Child1、Child2、ChildN 和 Parent。我希望能够从“父”项目调用任何子项目中的任何公共方法。我以为 sbt 的 ParentProject 会处理我的问题,但它甚至没有没有“运行”动作。
什么 sbt 配置可以解决我的问题?
For example, I have projects Child1, Child2, ChildN and Parent. I want to be able to invoke any public method in any child project from "Parent" project. I supposed that sbt's ParentProject will handle my issues but it even don't have "run" action.
What sbt configuration will handle my issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用默认项目,如下所示,并且
run
将可用:Use a default project, like this, and
run
will be available: