io.github.klahap.fraplin
Owner: Klaus Happacher
A plugin that generates a Frappe REST client in Kotlin
https://github.com/klahap/fraplin
Sources: https://github.com/klahap/fraplin.git
Version 1.0.0
1.0.0
Created 21 June 2024.
A plugin that generates a Frappe REST client in Kotlin
Using the plugins DSL:
plugins {
id("io.github.klahap.fraplin") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.klahap.fraplin:frappe_dsl_gen:1.0.0")
}
}
apply(plugin = "io.github.klahap.fraplin")
Using the plugins DSL:
plugins {
id "io.github.klahap.fraplin" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.klahap.fraplin:frappe_dsl_gen:1.0.0"
}
}
apply plugin: "io.github.klahap.fraplin"