Search Gradle plugins

io.github.manriif.supabase-functions

The plugin helps in building Supabase Edge Functions using Kotlin as primary programming language. It offers support for multi-module project and Javascript sources. Additionnaly, it provides gradle tasks for serving, inspecting and testing your functions locally and later deploying them to a remote project.

https://github.com/manriif/supabase-edge-functions-kt

Sources: https://github.com/manriif/supabase-edge-functions-kt

Version 0.0.2

0.0.2

Created 28 June 2024.

The plugin helps in building Supabase Edge Functions using Kotlin as primary programming language. It offers support for multi-module project and Javascript sources. Additionnaly, it provides gradle tasks for serving, inspecting and testing your functions locally and later deploying them to a remote project.

Using the plugins DSL:

plugins {
  id("io.github.manriif.supabase-functions") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.manriif.supabase-functions:gradle-plugin:0.0.2")
  }
}

apply(plugin = "io.github.manriif.supabase-functions")

Using the plugins DSL:

plugins {
  id "io.github.manriif.supabase-functions" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.manriif.supabase-functions:gradle-plugin:0.0.2"
  }
}

apply plugin: "io.github.manriif.supabase-functions"

Learn how to apply plugins to subprojects