How to add a dependency to Maven
Add the following dev.felnull : felnull-java-library-natives maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>dev.felnull</groupId>
<artifactId>felnull-java-library-natives</artifactId>
<version>1.75</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following dev.felnull : felnull-java-library-natives gradle dependency to your build.gradle
file:
implementation 'dev.felnull:felnull-java-library-natives:1.75'
Gradle Kotlin DSL: Add the following dev.felnull : felnull-java-library-natives gradle kotlin dependency to your build.gradle.kts
file:
implementation("dev.felnull:felnull-java-library-natives:1.75")
How to add a dependency to SBT Scala
SBT Scala: Add the following dev.felnull : felnull-java-library-natives sbt scala dependency to your build.sbt
file:
libraryDependencies += "dev.felnull" % "felnull-java-library-natives" % "1.75"