Search Gradle plugins

Version 2.0.274

2.0.274

Created 06 October 2020.

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.0.274"
}

See also:

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