org.decembrist.kotlin2js.reflection
Owner:
decembrist revolt
Plugin for kotlin2js reflection processing
Sources: https://github.com/decembrist-revolt/decembrist-kotlin2js-reflection
Version 0.1.0-beta-1 (latest)
Created 02 November 2018.
Plugin for kotlin2js reflection processing
Add this plugin to your build using the plugins DSL:
plugins {
id("org.decembrist.kotlin2js.reflection") version "0.1.0-beta-1"
}
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("org.decembrist.kotlin2js.reflection:org.decembrist.kotlin2js.reflection.gradle.plugin:0.1.0-beta-1") }
It can then be applied in the precompiled script plugin:plugins { id("org.decembrist.kotlin2js.reflection") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.decembrist.kotlin2js.reflection:org.decembrist.kotlin2js.reflection.gradle.plugin:0.1.0-beta-1") } } apply(plugin = "org.decembrist.kotlin2js.reflection")
- Applying plugins to all subprojects .