and also, how do you "externalize" the declaration...
# gradle
u
and also, how do you "externalize" the declaration, since it contains the version as a function also
g
you can declare plugin in root project with version:
Copy code
plugins {
    id 'com.jfrog.bintray' version '0.4.1' apply false
}
And without versions in all other projects to apply, gradle anyway will restrict if you have different versions
also, you can the same what documentation (it’s the next paragraph from link which I sent to previous thread) and define version in settings.gradle
in general, whole this document is very informative and must to read if you want to migrate from legacy buildscript classpath to plugins dsl