子项目的插件符号

plugins notation for sub projects

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.

这是什么意思?我应该在每个模块中添加插件符号还是其他?

我认为这不完全正确。可以将 plugins 块用于多模块项目。

尝试以下方法(未经测试):

plugins {
    id("com.jfrog.bintray") version "1.8.4" apply false
}

subprojects {
    apply {
        plugin("com.jfrog.bintray")
    }
}

这应该将它应用到所有子项目,就像您在每个项目中应用 plugins {} 一样。