dev.monosoul.jooq.settings.JdbcAware.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jooq-gradle-plugin Show documentation
Show all versions of jooq-gradle-plugin Show documentation
Generates jOOQ classes using dockerized database
The 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 - 2025 Weber Informatics LLC | Privacy Policy