Search Gradle plugins

Version 2.0.103

Created 04 July 2019.

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.so.agi:gretl:2.0.103")
  }
}

apply(plugin = "ch.so.agi.gretl")

Using the plugins DSL:

plugins {
  id "ch.so.agi.gretl" version "2.0.103"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.so.agi:gretl:2.0.103"
  }
}

apply plugin: "ch.so.agi.gretl"

Learn how to apply plugins to subprojects