Package org.flywaydb.core.internal.util

Examples of org.flywaydb.core.internal.util.Location


    public static void configure(Flyway flyway, Properties properties) throws SQLException {
        flyway.setCallbacks(new RepeatableCallback(flyway, properties));
        List<MigrationResolver> migrationResolvers = new ArrayList<>();
        for (String locationDescriptor : flyway.getLocations()) {
            migrationResolvers.add(new RepeatableMigrationResolver(flyway, "R", new Location(locationDescriptor)));
        }

        flyway.setResolvers(migrationResolvers.toArray(new MigrationResolver[0]));
    }
View Full Code Here

TOP

Related Classes of org.flywaydb.core.internal.util.Location

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.