Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.dom4j:dom4j:2.0.0'
}
dependencies {
implementation("com.github.dom4j:dom4j:2.0.0")
}
<dependency>
<groupId>com.github.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>2.0.0</version>
</dependency>
libraryDependencies += "com.github.dom4j" % "dom4j" % "2.0.0"
:dependencies [[com.github.dom4j/dom4j "2.0.0"]]
dom4j
is an open source framework for processing XML which is integrated with XPath and fully supports DOM, SAX, JAXP and the Java platform such as Java 2 Collections.
See https://github.com/dom4j/dom4j/releases/tag/version-2.1.4
(Version 2.1.2 has been skipped.)
org.dom4j.io.SAXReader.createDefault()
. It hase more secure defaults than new SAXReader()
, which uses system
XMLReaderFactory.createXMLReader()
or SAXParserFactory.newInstance().newSAXParser()
. SAXReader.createDefault()
disable parsing of external entities
in the SAX parser.Bug fix release.
DocumentHelper.parseText()
to XML injection (reported by @s0m30ne)QNameCache
(@jbennett2091)QName
s (reported by @mario-areias)