cashapp/zipline

Serializer for SerializableZiplineServiceType is not found.

Closed this issue · 1 comments

Rebuilding extensions from same old code with minor update in few strings, no dep change, but client giving above.
Prev Deployed Extensions/Plugins still work with same client, not able to build new ones.

Tried with following Versions:

  • 1.2.0
  • 1.3.0

previously also built with the 1.2.0 only, but not aware what changed, likely only things was IDE is updated.

image

have confirmed i am applying kotlin("plugin.serialization") everywhere, so no idea what needs to change.

finally got it,
for some reason needed to enforce the version of kotlin and serialization this time.


configurations.all {
        resolutionStrategy {
            eachDependency {
                if (requested.group == "org.jetbrains.kotlin") {
                    useVersion("1.9.10")
                }

                if (requested.name == "kotlinx-serialization-json") {
                    useVersion("1.6.0")
                }
            }
        }
    }