Skip to content

Installing GemsFX (Maven, Gradle)

leewyatt edited this page May 2, 2024 · 4 revisions

Version Compatibility

  • For Java 11: The last version of GemsFX compatible with Java 11 is 2.6.0.
  • For Java 17+: Starting from version 2.6.6, GemsFX requires Java 17 or later.

While our project currently supports both Java 11 and Java 17, we recommend utilizing the latest version of the library. The newer releases have fixed known issues and introduced additional features.

Installation

Add the GemsFX library to your project by including the following dependency in your build configuration.

Using Maven

Depending on your JDK version, add the appropriate dependency to your pom.xml:

  1. For Java 17 and later:

       <dependency>
           <groupId>com.dlsc.gemsfx</groupId>
           <artifactId>gemsfx</artifactId>
           <version>2.11.0</version>
       </dependency>

    Get Latest Version

  2. For Java 11:

    <dependency>
        <groupId>com.dlsc.gemsfx</groupId>
        <artifactId>gemsfx</artifactId>
        <version>2.6.0</version>
    </dependency>

Using Gradle

Depending on your JDK version, add the appropriate dependency to your build.gradle:

  1. For Java 17 and later:

    implementation 'com.dlsc.gemsfx:gemsfx:2.11.0'

    Get Latest Version

  2. For Java 11:

     implementation 'com.dlsc.gemsfx:gemsfx:2.6.0'
Clone this wiki locally