me.nathanfallet.streamdeck
Owner: Nathan Fallet
A Gradle plugin to create and bundle StreamDeck plugins
https://github.com/nathanfallet/streamdeck-kotlin-sdk
Sources: https://github.com/nathanfallet/streamdeck-kotlin-sdk.git
Version 1.2.0 (latest)
1.2.0
Created 23 June 2024.
A Gradle plugin to create and bundle StreamDeck plugins
Using the plugins DSL:
plugins {
id("me.nathanfallet.streamdeck") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("me.nathanfallet.streamdeck:streamdeck-gradle-plugin:1.2.0")
}
}
apply(plugin = "me.nathanfallet.streamdeck")
Using the plugins DSL:
plugins {
id "me.nathanfallet.streamdeck" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.nathanfallet.streamdeck:streamdeck-gradle-plugin:1.2.0"
}
}
apply plugin: "me.nathanfallet.streamdeck"