搜索 Gradle 插件

io.github.stewartbryson.snowflake

所有者: Stewart Bryson

简化将 UDF 发布到 Snowflake 的过程。支持使用 Snowpark 的内部阶段或使用 maven-publish 的外部阶段。

https://github.com/stewartbryson/gradle-snowflake

来源: https://github.com/stewartbryson/gradle-snowflake

使用 插件 DSL

plugins {
  id("io.github.stewartbryson.snowflake") version "2.1.20"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.stewartbryson:gradle-snowflake-plugin:2.1.20")
  }
}

apply(plugin = "io.github.stewartbryson.snowflake")

使用 插件 DSL

plugins {
  id "io.github.stewartbryson.snowflake" version "2.1.20"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.stewartbryson:gradle-snowflake-plugin:2.1.20"
  }
}

apply plugin: "io.github.stewartbryson.snowflake"

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