I am trying to migrate from Firebase 2.X to the latest version. Is there a way to continue using Jackson annotations? This will reduce the lift of my migration tremendously.
Example:
public final class Example {
@JsonProperty("field_example")
private int myField;
Example() {
}
}
gradle file
compile 'com.google.firebase:firebase-database:10.0.1'
compile 'com.fasterxml.jackson.core:jackson-core:2.8.6'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.6'
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.6'