io.github.stewartbryson.snowflake
Owner: Stewart Bryson
Simplifies publishing UDFs to Snowflake. Supports internal stages using Snowpark, or external stages with maven-publish.
https://github.com/stewartbryson/gradle-snowflake
Sources: https://github.com/stewartbryson/gradle-snowflake
Version 2.1.20 (latest)
2.1.20
Created 12 July 2024.
Simplifies publishing UDFs to Snowflake. Supports internal stages using Snowpark, or external stages with maven-publish.
Using the plugins DSL:
plugins {
id("io.github.stewartbryson.snowflake") version "2.1.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.stewartbryson:gradle-snowflake-plugin:2.1.20")
}
}
apply(plugin = "io.github.stewartbryson.snowflake")
Using the plugins DSL:
plugins {
id "io.github.stewartbryson.snowflake" version "2.1.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.stewartbryson:gradle-snowflake-plugin:2.1.20"
}
}
apply plugin: "io.github.stewartbryson.snowflake"