Skip to content
Simon edited this page Jun 27, 2024 · 12 revisions

To use Fleks add it as a dependency to your project. In the snippets below you will see how to add the 2.8 version. Adjust it to the release version that you want to use, ideally the latest:

Apache Maven

<dependency>
  <groupId>io.github.quillraven.fleks</groupId>
  <artifactId>Fleks-jvm</artifactId>
  <version>2.8</version>
</dependency>

Gradle (Groovy)

implementation 'io.github.quillraven.fleks:Fleks:2.8'

Gradle (Kotlin)

implementation("io.github.quillraven.fleks:Fleks:2.8")

KorGE

dependencyMulti("io.github.quillraven.fleks:Fleks:2.8", registerPlugin = false)
Clone this wiki locally