All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.serializer.core.json.JsonSnapshotSerializer Maven / Gradle / Ivy

There is a newer version: 3.6.2.5.inovus
Show newest version
package liquibase.serializer.core.json;

import liquibase.serializer.core.yaml.YamlSnapshotSerializer;

public class JsonSnapshotSerializer extends YamlSnapshotSerializer {

    @Override
    public String[] getValidFileExtensions() {
        return new String[]{
                "json"
        };
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy