Search Gradle plugins

Version 1.1.1 (latest)

Created 04 April 2024.

A Gradle plugin to create and bundle StreamDeck plugins

Using the plugins DSL:

plugins {
  id("me.nathanfallet.streamdeck") version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("me.nathanfallet.streamdeck:streamdeck-gradle-plugin:1.1.1")
  }
}

apply(plugin = "me.nathanfallet.streamdeck")

Using the plugins DSL:

plugins {
  id "me.nathanfallet.streamdeck" version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "me.nathanfallet.streamdeck:streamdeck-gradle-plugin:1.1.1"
  }
}

apply plugin: "me.nathanfallet.streamdeck"

Learn how to apply plugins to subprojects