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