MVN

com.github.hazendaz.jsoup : jsoup

Maven & Gradle

Feb 28, 2022
1 usages
10.6k stars

jsoup · jsoup is a Java library for working with real-world HTML. It provides a very convenient API for fetching URLs and extracting and manipulating data, using the best of HTML5 DOM methods and CSS selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do.

<dependency>
    <groupId>com.github.hazendaz.jsoup</groupId>
    <artifactId>jsoup</artifactId>
    <version>1.15.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.hazendaz.jsoup : jsoup to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.15.1

All Versions

Choose a version of com.github.hazendaz.jsoup : jsoup to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.15.x
jsoup-1.15.1

How to add a dependency to Maven

Add the following com.github.hazendaz.jsoup : jsoup maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.hazendaz.jsoup</groupId>
    <artifactId>jsoup</artifactId>
    <version>1.15.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.hazendaz.jsoup : jsoup gradle dependency to your build.gradle file:

implementation 'com.github.hazendaz.jsoup:jsoup:1.15.1'

Gradle Kotlin DSL: Add the following com.github.hazendaz.jsoup : jsoup gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.hazendaz.jsoup:jsoup:1.15.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.hazendaz.jsoup : jsoup sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.hazendaz.jsoup" % "jsoup" % "1.15.1"