rkennel.withdb
Owner:
Ryan Kennel
Add DB JDBC drivers to your gradle runtime dependencies
https://github.com/rkennel/withDb
Sources: https://github.com/rkennel/withDb.git
Version 1.0.3
Created 02 March 2021.
Add DB JDBC drivers to your gradle runtime dependencies
Using the plugins DSL:
plugins {
id("rkennel.withdb") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("rkennel.withdb:withDb:1.0.3")
}
}
apply(plugin = "rkennel.withdb")
Using the plugins DSL:
plugins {
id "rkennel.withdb" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "rkennel.withdb:withDb:1.0.3"
}
}
apply plugin: "rkennel.withdb"