elect86.lwjgl
Owner:
Giuseppe Barbieri
Easier Lwjgl dependency management
https://github.com/elect86/lwjgl
Sources: https://github.com/elect86/magik
Using the plugins DSL:
plugins {
id("elect86.lwjgl") version "0.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.elect86:plugin:0.0.11")
}
}
apply(plugin = "elect86.lwjgl")
Using the plugins DSL:
plugins {
id "elect86.lwjgl" version "0.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.elect86:plugin:0.0.11"
}
}
apply plugin: "elect86.lwjgl"