Search Gradle plugins

Version 0.0.30

0.0.30

Created 12 January 2023.

Easier Lwjgl dependency management

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.lwjgl.plugin") version "0.0.30"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.lwjgl:plugin:0.0.30")
      }
    }
    
    apply(plugin = "org.lwjgl.plugin")
  • Applying plugins to all subprojects .