MVN

net.pwall.html : html-pipeline

Maven & Gradle

Mar 01, 2020
0 stars

Simple pipeline parser for HTML · Simple parser for HTML, using the pipelines library. This is not intended to be a strict parser of HTML5; the main planned use is to help with "screen-scraping" of HTML websites. It may also find use as a tool for testing HTML generation.

<dependency>
    <groupId>net.pwall.html</groupId>
    <artifactId>html-pipeline</artifactId>
    <version>0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.pwall.html : html-pipeline to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.1

All Versions

Choose a version of net.pwall.html : html-pipeline to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.1
html-pipeline-0.1

How to add a dependency to Maven

Add the following net.pwall.html : html-pipeline maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.pwall.html</groupId>
    <artifactId>html-pipeline</artifactId>
    <version>0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.pwall.html : html-pipeline gradle dependency to your build.gradle file:

implementation 'net.pwall.html:html-pipeline:0.1'

Gradle Kotlin DSL: Add the following net.pwall.html : html-pipeline gradle kotlin dependency to your build.gradle.kts file:

implementation("net.pwall.html:html-pipeline:0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.pwall.html : html-pipeline sbt scala dependency to your build.sbt file:

libraryDependencies += "net.pwall.html" % "html-pipeline" % "0.1"

Advertisement