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

net.sixpointsix.springboot.jdbistarter.provider.PostgresPluginProvider Maven / Gradle / Ivy

package net.sixpointsix.springboot.jdbistarter.provider;

import org.jdbi.v3.core.spi.JdbiPlugin;
import org.jdbi.v3.postgres.PostgresPlugin;

public class PostgresPluginProvider implements JdbiPluginProvider {
    /**
     * Get a Jdbi Plugin
     *
     * @return Get plugin
     */
    @Override
    public JdbiPlugin getPlugin() {
        return new PostgresPlugin();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy