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

Created 08 April 2020.

Plugin for using the Nintendo Joycons with Java Applications. Supports buttons and joysticks, battery & rumble. IMU under testing and NFC/IR will come soon.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.laksh.JoyconLib"

Learn how to apply plugins to subprojects