SBT、依赖项、类路径和编辑器
我最近将 sbt 设置更新到版本 0.11。如您所知,新的 SBT 使用 .ivy2 文件夹来存储/缓存所有检索到的 jar 文件。我正在使用 IntelliJ,我想知道将依赖项导入编辑器类路径的推荐方法是什么。
一种选择是手动访问 .ivy2 文件夹并选择依赖项。有没有更好/更简单的方法来做到这一点?
I recently updated my sbt setup to version 0.11. As you may know, new SBT uses .ivy2 folder to store/cache all the retrieved jar files. I am using IntelliJ and I would like to know what is the recommended way of importing dependencies to the editor's classpath.
One option is to manually visit .ivy2 folder and select the dependencies. Is there a better/easier way to doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试IvyIDEA插件。
You can try IvyIDEA plug-in.
我假设您使用 SBT 插件。根据链接页面上的说明:
我通常跑步
gen-idea 无分类器 no-sbt-classifiers
(请参阅 github 上的“用法”)。然后,IntelliJ (11 RC) 会要求您重新加载项目,这通常非常快。然后,对 SBT 依赖项的引用将可用。
I presume you use the SBT-plugin. According to the instructions on the linked page:
I usually run
gen-idea no-classifiers no-sbt-classifiers
(see under "Usage" on github). IntelliJ (11 RC) will then ask you to reload the project, which is usually quite fast. Then the references to your SBT dependencies will be available.