ch.so.agi.gretl
The Gradle gretl plugin extends gradle for use as a sql-centric (geo)data etl. gretl = gradle etl.
https://github.com/sogis/gretl
Sources: https://github.com/sogis/gretl.git
Version 2.1.109
2.1.109
Created 25 March 2021.
The Gradle gretl plugin extends gradle for use as a sql-centric (geo)data etl. gretl = gradle etl.
Using the plugins DSL:
plugins {
id("ch.so.agi.gretl") version "2.1.109"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.so.agi:gretl:2.1.109")
}
}
apply(plugin = "ch.so.agi.gretl")
Using the plugins DSL:
plugins {
id "ch.so.agi.gretl" version "2.1.109"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.so.agi:gretl:2.1.109"
}
}
apply plugin: "ch.so.agi.gretl"