Search Gradle plugins

com.laksh.JoyconLib

Plugin for using the Nintendo Joycons with Java Applications. Supports buttons and joysticks. Battery & Rumble coming soon

https://github.com/LakshBhambhani/Java-Joycon

Sources: https://github.com/LakshBhambhani/Java-Joycon.git

Version 1.0

Created 29 March 2020.

Plugin for using the Nintendo Joycons with Java Applications. Supports buttons and joysticks. Battery & Rumble coming soon

Using the plugins DSL:

plugins {
  id("com.laksh.JoyconLib") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.laksh.JoyconLib:JoyconLib:1.0")
  }
}

apply(plugin = "com.laksh.JoyconLib")

Using the plugins DSL:

plugins {
  id "com.laksh.JoyconLib" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.laksh.JoyconLib:JoyconLib:1.0"
  }
}

apply plugin: "com.laksh.JoyconLib"

Learn how to apply plugins to subprojects