io.github.stewartbryson.snowflake
所有者: Stewart Bryson
简化将 UDF 发布到 Snowflake 的过程。支持使用 Snowpark 的内部阶段或使用 maven-publish 的外部阶段。
https://github.com/stewartbryson/gradle-snowflake
来源: https://github.com/stewartbryson/gradle-snowflake
版本 2.1.20 (最新版)
2.1.20
创建于 2024 年 7 月 12 日。
简化将 UDF 发布到 Snowflake 的过程。支持使用 Snowpark 的内部阶段或使用 maven-publish 的外部阶段。
使用 插件 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"