Search Gradle plugins

Version 3.0.7 (latest)

3.0.7

Created 30 October 2024.

A plugin that generates a Frappe REST client in Kotlin

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.klahap.fraplin") version "3.0.7"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.klahap.fraplin:frappe_dsl_gen:3.0.7")
      }
    }
    
    apply(plugin = "io.github.klahap.fraplin")
  • Applying plugins to all subprojects .