Search Gradle plugins

io.github.stewartbryson.snowflake

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects