ru.pocketbyte.locolaser
Owner: Denis Shurygin
Plugin for LocoLaser
https://github.com/PocketByte/LocoLaser/
Sources: https://github.com/PocketByte/locolaser-gradle-plugin
Version 2.5.0 (latest)
2.5.0
Created 13 November 2024.
Plugin for LocoLaser without any dependency. You should provide all necessary dependencies manually.
Using the plugins DSL:
plugins {
id("ru.pocketbyte.locolaser") version "2.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ru.pocketbyte.locolaser:plugin:2.5.0")
}
}
apply(plugin = "ru.pocketbyte.locolaser")
Using the plugins DSL:
plugins {
id "ru.pocketbyte.locolaser" version "2.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ru.pocketbyte.locolaser:plugin:2.5.0"
}
}
apply plugin: "ru.pocketbyte.locolaser"