-
Thanks for the template, I'm new to SpringBoot and this is a great resource! I'm having issues added Kotlin's serialization library to buildSrc and thought to ask for assistance: I've tried adding: // buildSrc/.../kotlin-conventions.gradle.kts
plugins {
kotlin("plugin.serialization")
} but am seeing the following error:
I'm hoping once I solve that then I can the follow dependency to either a) all sub-projects (in kotlin-conventions.gradle.kts??), or b) specific sub-projects: dependency {
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0")
} Thanks for any assistance in how this lib can be setup in your template. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You need to add the dependency to
AND in
|
Beta Was this translation helpful? Give feedback.
You need to add the dependency to
buildSrc/build.gradle.kts
:AND in
gradle/libs.versions.toml
underlibraries
: