Search Gradle plugins

Version 2.5.1

2.5.1

Created 02 September 2024.

A plugin that generates a Frappe REST client in Kotlin

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.klahap.fraplin:frappe_dsl_gen:2.5.1")
  }
}

apply(plugin = "io.github.klahap.fraplin")

Using the plugins DSL:

plugins {
  id "io.github.klahap.fraplin" version "2.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.klahap.fraplin:frappe_dsl_gen:2.5.1"
  }
}

apply plugin: "io.github.klahap.fraplin"

Learn how to apply plugins to subprojects