Hi everyone. How can I make a plugin visible to the buildSrc module?
already tried to add it as a dependency on the build file:
implementation("com.jfrog.bintray.gradlegradle bintray plugin$bintrayPluginVersion")
also tried to apply the plugin using the plugins block, but still wasn't able to create an extension on the BintrayExtension class (class added by the plugin)
t
tapchicoma
04/12/2019, 5:50 PM
add it to
buildSrc/build.gradle.kts
file the same way as you've added in project root
build.gradle.kts
i
Icaro Temponi
04/12/2019, 6:02 PM
yeah, i've done that and it worked, looks like I only needed to wait all the syncs, thanks