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.0.16
2.0.16
Created 02 June 2023.
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.0.16"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.stewartbryson:gradle-snowflake-plugin:2.0.16")
}
}
apply(plugin = "io.github.stewartbryson.snowflake")
Using the plugins DSL:
plugins {
id "io.github.stewartbryson.snowflake" version "2.0.16"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.stewartbryson:gradle-snowflake-plugin:2.0.16"
}
}
apply plugin: "io.github.stewartbryson.snowflake"