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