Hi everyone. How can I make a plugin visible to th...
# gradle
i
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
add it to
buildSrc/build.gradle.kts
file the same way as you've added in project root
build.gradle.kts
i
yeah, i've done that and it worked, looks like I only needed to wait all the syncs, thanks