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 1.0-beta-1
1.0-beta-1
Created 03 January 2019.
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 "1.0-beta-1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.schablinski.gradle.activejdbc:activejdbc-gradle-plugin:1.0-beta-1")
}
}
apply(plugin = "de.schablinski.activejdbc-gradle-plugin")
Using the plugins DSL:
plugins {
id "de.schablinski.activejdbc-gradle-plugin" version "1.0-beta-1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.schablinski.gradle.activejdbc:activejdbc-gradle-plugin:1.0-beta-1"
}
}
apply plugin: "de.schablinski.activejdbc-gradle-plugin"