搜索Gradle插件

版本 2.9999.10 (最新版)

2.9999.10

创建于 2023年7月7日。

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

使用插件DSL

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

使用旧插件应用

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

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

使用插件DSL

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

使用旧插件应用

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

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

了解如何将插件应用于子项目