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

dev.monosoul.jooq.settings.JdbcAware.kt Maven / Gradle / Ivy

There is a newer version: 6.1.5
Show newest version
package dev.monosoul.jooq.settings

import dev.monosoul.jooq.util.callWith
import groovy.lang.Closure
import org.gradle.api.Action

internal interface JdbcAware {
    /**
     * Configures the JDBC connection settings.
     */
    fun jdbc(customizer: Action)

    /**
     * Configures the JDBC connection settings.
     */
    fun jdbc(closure: Closure) = jdbc(closure::callWith)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy