Search Gradle plugins

com.jstarczewski.kstate.generate

Plugin generates Swift wrappers needed for Kstate state management library to work. The code of the library is available in the same repository as the kstate-generate gradle plugin.

https://github.com/jstarczewski/kstate

Sources: https://github.com/jstarczewski/kstate

Version 0.0.3 (latest)

Created 13 February 2023.

Plugin generates Swift wrappers needed for Kstate state management library to work. The code of the library is available in the same repository as the kstate-generate gradle plugin.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.jstarczewski.kstate.generate") version "0.0.3"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.jstarczewski.kstate.generate:com.jstarczewski.kstate.generate.gradle.plugin:0.0.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.jstarczewski.kstate.generate")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.jstarczewski.kstate.generate:com.jstarczewski.kstate.generate.gradle.plugin:0.0.3")
      }
    }
    
    apply(plugin = "com.jstarczewski.kstate.generate")
  • Applying plugins to all subprojects .