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 3.0.7 (latest)
3.0.7
Created 30 October 2024.
A plugin that generates a Frappe REST client in Kotlin
Using the plugins DSL:
plugins {
id("io.github.klahap.fraplin") version "3.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.klahap.fraplin:frappe_dsl_gen:3.0.7")
}
}
apply(plugin = "io.github.klahap.fraplin")
Using the plugins DSL:
plugins {
id "io.github.klahap.fraplin" version "3.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.klahap.fraplin:frappe_dsl_gen:3.0.7"
}
}
apply plugin: "io.github.klahap.fraplin"