gradle-bintray-plugin documentation说:
Currently the "plugins" notation cannot be used for applying the plugin for sub projects, when used from the root build script.
是什么意思?我应该在每个模块或其他模块中添加插件符号吗?
答案 0 :(得分:1)
我认为那不是完全正确的。对于多模块项目,可以使用plugins
块。
尝试以下步骤(未试用):
plugins {
id("com.jfrog.bintray") version "1.8.4" apply false
}
subprojects {
apply {
plugin("com.jfrog.bintray")
}
}
那应该将其应用于所有子项目,就像您在每个项目中所做的plugins {}
一样。