de.schablinski.activejdbc-gradle-plugin
Owner: Christof Schablinski
A plugin to instrument your project's model classes for the ActiveJDBC ORM framework.
https://github.com/cschabl/activejdbc-gradle-plugin
Sources: https://github.com/cschabl/activejdbc-gradle-plugin.git
Version 2.0.3 (latest)
2.0.3
Created 12 December 2022.
A plugin to instrument your project's model classes for the ActiveJDBC ORM framework.
Using the plugins DSL:
plugins {
id("de.schablinski.activejdbc-gradle-plugin") version "2.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.schablinski.gradle.activejdbc:activejdbc-gradle-plugin:2.0.3")
}
}
apply(plugin = "de.schablinski.activejdbc-gradle-plugin")
Using the plugins DSL:
plugins {
id "de.schablinski.activejdbc-gradle-plugin" version "2.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.schablinski.gradle.activejdbc:activejdbc-gradle-plugin:2.0.3"
}
}
apply plugin: "de.schablinski.activejdbc-gradle-plugin"