Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从 sbt-idea 插件执行 gen-idea 命令后,我想在 ./idea/workspace.xml 中生成一些额外的东西。我要么需要修改 gen-idea 命令以在执行后附加我的代码,要么创建一个运行 gen-idea 命令的新命令。问题是如何做到这一点?
更一般地说,如何从 sbt 任务或命令执行命令?
根据这个讨论,sbt 不可能达到 0.12.x。
一种可能的解决方法是定义别名:
alias genidea=; gen-idea; my-gen-stuff
在.sbtrc文件中