How to add a dependency to Maven
Add the following mk.0x.ndk : openssl maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>mk.0x.ndk</groupId>
<artifactId>openssl</artifactId>
<version>1.1.1l</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following mk.0x.ndk : openssl gradle dependency to your build.gradle
file:
implementation 'mk.0x.ndk:openssl:1.1.1l'
Gradle Kotlin DSL: Add the following mk.0x.ndk : openssl gradle kotlin dependency to your build.gradle.kts
file:
implementation("mk.0x.ndk:openssl:1.1.1l")
How to add a dependency to SBT Scala
SBT Scala: Add the following mk.0x.ndk : openssl sbt scala dependency to your build.sbt
file:
libraryDependencies += "mk.0x.ndk" % "openssl" % "1.1.1l"