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