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

liquibase.parser.core.json.JsonSnapshotParser Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
package liquibase.parser.core.json;

import liquibase.parser.core.yaml.YamlSnapshotParser;

public class JsonSnapshotParser extends YamlSnapshotParser {

    @Override
    protected String[] getSupportedFileExtensions() {
        return new String[] {"json"};
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy