Darryl Pierce
06/29/2024, 12:38 PMjackson = { group = "com.fasterxml.jackson.module", name = "jackson-module-kotlin", version.ref = "jackson" }
jackson-xml = { group = "com.fasterxml.jackson.core", name = "jackson-databind", version.ref = "jackson" }
to shared/build.gradle.kts in commonMain.dependencies{}:
implementation(libs.jackson)
implementation(libs.jackson.xml)
But, inside of my class that wants to parse incoming XML to a list of objects, the method "jacksonObjectMapper()" doesn't appear to be addressable. I've been googling all morning and am completely stumped. Any help on getting this to work?