MVN

org.lwjgl : lwjgl-glfw

Maven & Gradle

Feb 22, 2022
87 usages
3k stars

LWJGL - GLFW bindings · A multi-platform library for OpenGL, OpenGL ES and Vulkan development on the desktop. It provides a simple API for creating windows, contexts and surfaces, receiving input and events.

<dependency>
    <groupId>org.lwjgl</groupId>
    <artifactId>lwjgl-glfw</artifactId>
    <version>3.3.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.lwjgl : lwjgl-glfw to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.3.1

All Versions

Choose a version of org.lwjgl : lwjgl-glfw to add to Maven or Gradle - All Versions:

  • Version Updated
  • lwjgl-glfw-3.3.1

    Feb 21, 2022
  • lwjgl-glfw-3.3.0

    Nov 15, 2021
  • lwjgl-glfw-3.2.3

    Sep 01, 2019
  • lwjgl-glfw-3.2.2

    May 05, 2019
  • lwjgl-glfw-3.2.1

    Dec 08, 2018
  • lwjgl-glfw-3.2.0

    Jul 30, 2018
  • lwjgl-glfw-3.1.6

    Feb 04, 2018
  • lwjgl-glfw-3.1.5

    Nov 22, 2017
  • lwjgl-glfw-3.1.4

    Nov 19, 2017
  • lwjgl-glfw-3.1.3

    Sep 21, 2017
  • lwjgl-glfw-3.1.2

    May 15, 2017
  • lwjgl-glfw-3.1.1

    Dec 27, 2016
  • lwjgl-glfw-3.1.0

    Oct 30, 2016

How to add a dependency to Maven

Add the following org.lwjgl : lwjgl-glfw maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.lwjgl</groupId>
    <artifactId>lwjgl-glfw</artifactId>
    <version>3.3.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.lwjgl : lwjgl-glfw gradle dependency to your build.gradle file:

implementation 'org.lwjgl:lwjgl-glfw:3.3.1'

Gradle Kotlin DSL: Add the following org.lwjgl : lwjgl-glfw gradle kotlin dependency to your build.gradle.kts file:

implementation("org.lwjgl:lwjgl-glfw:3.3.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.lwjgl : lwjgl-glfw sbt scala dependency to your build.sbt file:

libraryDependencies += "org.lwjgl" % "lwjgl-glfw" % "3.3.1"