io.github.dwarfley.lwjgl-helper
Owner: Niklas Johansson
The lwjgl helper plugin makes it easier to add lwjgl dependencies.
https://github.com/Dwarfley/GradleLwjglHelper
Sources: https://github.com/Dwarfley/GradleLwjglHelper
Version 0.1.1 (latest)
0.1.1
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"