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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.jstarczewski.kstate:kstate-generate:0.0.3")
  }
}

apply(plugin = "com.jstarczewski.kstate.generate")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.jstarczewski.kstate:kstate-generate:0.0.3"
  }
}

apply plugin: "com.jstarczewski.kstate.generate"

Learn how to apply plugins to subprojects