ru.pocketbyte.locolaser.kmp
Owner: Denis Shurygin
Extended Plugin for LocoLaser that also attaches all required dependencies for Kotlin Multiplatform projects.
https://github.com/PocketByte/LocoLaser/
Sources: https://github.com/PocketByte/LocoLaser/
Version 2.4.3
Created 16 August 2024.
Extended Plugin for LocoLaser that also attaches all required dependencies for Kotlin Multiplatform projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.pocketbyte.locolaser.kmp") version "2.4.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("ru.pocketbyte.locolaser.kmp:ru.pocketbyte.locolaser.kmp.gradle.plugin:2.4.3") }
It can then be applied in the precompiled script plugin:plugins { id("ru.pocketbyte.locolaser.kmp") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.pocketbyte.locolaser.kmp:ru.pocketbyte.locolaser.kmp.gradle.plugin:2.4.3") } } apply(plugin = "ru.pocketbyte.locolaser.kmp")
- Applying plugins to all subprojects .