com.neomo.conventions.gcf-http4k
Owner: Benedikt Arnold
NEOMO conventions for google cloud functions written in kotlin with http interface
https://github.com/neomocom/gradle-conventions
Sources: https://github.com/neomocom/gradle-conventions
Version 0.11.2 (latest)
0.11.2
Created 30 September 2024.
NEOMO conventions for google cloud functions written in kotlin with http interface
Using the plugins DSL:
plugins {
id("com.neomo.conventions.gcf-http4k") version "0.11.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.neomo.conventions:gradle-conventions:0.11.2")
}
}
apply(plugin = "com.neomo.conventions.gcf-http4k")
Using the plugins DSL:
plugins {
id "com.neomo.conventions.gcf-http4k" version "0.11.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.neomo.conventions:gradle-conventions:0.11.2"
}
}
apply plugin: "com.neomo.conventions.gcf-http4k"