Search Gradle plugins

Version 0.1.1 (latest)

Created 27 December 2023.

The lwjgl helper plugin makes it easier to add lwjgl dependencies.

Using the plugins DSL:

plugins {
  id("io.github.dwarfley.lwjgl-helper") version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.dwarfley:gradle-lwjgl-helper:0.1.1")
  }
}

apply(plugin = "io.github.dwarfley.lwjgl-helper")

Using the plugins DSL:

plugins {
  id "io.github.dwarfley.lwjgl-helper" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.dwarfley:gradle-lwjgl-helper:0.1.1"
  }
}

apply plugin: "io.github.dwarfley.lwjgl-helper"

Learn how to apply plugins to subprojects