【发布时间】:2013-11-21 00:48:00
【问题描述】:
gradle 中是否有 IntelliJ idea 的“导出”依赖版本?
在 IntelliJ IDEA 上,如果我有模块 A 依赖于模块 B,模块 B 依赖于模块 C,那么只有在 exported 设置为 true 时,模块 B 的依赖关系才会导出到模块 A。。 p>
我目前正在编写一个脚本来将我的 IntelliJ 项目转换为 Gradle 项目。 Gradle在编写时如何处理buildscript中的传递依赖:
dependencies {
compile project(':DependentProject') // exported = true, but how?
}
?
提前致谢!
【问题讨论】:
标签: dependencies gradle android-studio