Package com.aceevo.ursus.spi.liquibase

Examples of com.aceevo.ursus.spi.liquibase.LiquibaseService


        T configuration = parseConfiguration(configurationFile, configurationClass);

        ServiceLoader<LiquibaseService> loader = ServiceLoader.load(LiquibaseService.class);
        Iterator<LiquibaseService> iterator = loader.iterator();
        LiquibaseService liquibaseService = iterator.next(); // There can be only one
        liquibaseService.runLiquibaseCommand(configuration.getDatabase(), command);
    }
View Full Code Here

TOP

Related Classes of com.aceevo.ursus.spi.liquibase.LiquibaseService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.