Search Gradle plugins

Version 1.1.22

1.1.22

Created 15 October 2024.

Generates special kotlin classes from different API schemas, that can be used to build a custom DSL

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.benkeil.kotlin-dsl-gradle-plugin") version "1.1.22"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.benkeil:kotlin-dsl-gradle-plugin:1.1.22")
      }
    }
    
    apply(plugin = "io.github.benkeil.kotlin-dsl-gradle-plugin")
  • Applying plugins to all subprojects .