Search Gradle plugins

ru.pocketbyte.locolaser.kmp

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.3.2 (latest)

Created 20 February 2024.

Extended Plugin for LocoLaser that also attaches all required dependencies for Kotlin Multiplatform projects.

Using the plugins DSL:

plugins {
  id("ru.pocketbyte.locolaser.kmp") version "2.3.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ru.pocketbyte.locolaser:plugin-kmp:2.3.2")
  }
}

apply(plugin = "ru.pocketbyte.locolaser.kmp")

Using the plugins DSL:

plugins {
  id "ru.pocketbyte.locolaser.kmp" version "2.3.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ru.pocketbyte.locolaser:plugin-kmp:2.3.2"
  }
}

apply plugin: "ru.pocketbyte.locolaser.kmp"

Learn how to apply plugins to subprojects