Search Gradle plugins

com.zegreatrob.jsmints.plugins.minreact

This plugin will generate boilerplace related to working with React in Kotlin for function components and their props.

https://github.com/robertfmurdock/jsmints

Sources: https://github.com/robertfmurdock/jsmints

Version 6.1.94

Created 07 December 2024.

This plugin will generate boilerplate related to working with React in Kotlin for function components and their props.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.zegreatrob.jsmints.plugins.minreact") version "6.1.94"
}

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.zegreatrob.jsmints.plugins.minreact:com.zegreatrob.jsmints.plugins.minreact.gradle.plugin:6.1.94")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.zegreatrob.jsmints.plugins.minreact")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.zegreatrob.jsmints.plugins.minreact:com.zegreatrob.jsmints.plugins.minreact.gradle.plugin:6.1.94")
      }
    }
    
    apply(plugin = "com.zegreatrob.jsmints.plugins.minreact")
  • Applying plugins to all subprojects .