I want to apply the kotlinx plugin within the buil...
# gradle
b
I want to apply the kotlinx plugin within the build.gradle.kts for
buildSrc
(eg use a plugin for the development of plugins), but I am getting this error:
Copy code
Plugin [id: 'kotlinx-serialization'] was not found in any of the following sources:
Anyone know how to make a non-core plugin available within the buildSrc build.gradle.kts?
d
Copy code
plugins {
    kotlin("plugin.serialization")
}
🙏 1
b
Copy code
kotlin("plugin.serialization") version "1.3.60"
did the trick!
👍🏼 2