gradle-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.manriif.supabase-functions</groupId> <artifactId>gradle-plugin</artifactId> <version>0.0.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.manriif.supabase-functions</groupId> <artifactId>gradle-plugin</artifactId> <version>0.0.6</version> <name>Supabase Edge Functions Kotlin - Gradle Plugin</name> <description>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.</description> <url>https://github.com/manriif/supabase-edge-functions-kt</url> <inceptionYear>2024</inceptionYear> <licenses> <license> <name>MIT License</name> <url>https://github.com/manriif/supabase-edge-functions-kt/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>manriif</id> <name>Maanrifa Bacar Ali</name> <url>https://github.com/manriif</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/manriif/supabase-edge-functions-kt.git</connection> <developerConnection>scm:git:ssh://git@github.com/manriif/supabase-edge-functions-kt.git</developerConnection> <url>https://github.com/manriif/supabase-edge-functions-kt</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-gradle-plugin</artifactId> <version>2.0.21</version> <scope>runtime</scope> </dependency> <dependency> <groupId>gradle.plugin.org.jetbrains.gradle.plugin.idea-ext</groupId> <artifactId>gradle-idea-ext</artifactId> <version>1.1.9</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.squareup</groupId> <artifactId>kotlinpoet-jvm</artifactId> <version>2.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.atlassian.sourcemap</groupId> <artifactId>sourcemap</artifactId> <version>2.0.0</version> <scope>runtime</scope> </dependency> </dependencies> </project>