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