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