Search Gradle plugins

Version 2.9999.8

2.9999.8

Created 22 July 2021.

The Gradle gretl plugin extends Gradle for use as a sql-centric (geo)data etl. GRETL = Gradle ETL.

Add this plugin to your build using the plugins DSL:

plugins {
  id("ch.so.agi.gretl") version "2.9999.8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ch.so.agi:gretl:2.9999.8")
      }
    }
    
    apply(plugin = "ch.so.agi.gretl")
  • Applying plugins to all subprojects .