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