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