MVN

nekohtml : nekodtd

Maven & Gradle

Jul 03, 2006
4 usages

NekoDTD is a configuration that parses Document Type Definition (DTD) files and converts the information into an XML document. This representation can then be processed using standard XML processors and applications to perform grammar analysis, convert the DTD into other grammar formats, etc. For example, using an XSLT stylesheet, the XML representation of the DTD can be converted to an equivalent XML Schema or Relax NG grammar. The NekoDTD parser configuration is written using the Xerces Native Interface (XNI) that is the foundation of the Xerces2 implementation. This enables you to use NekoDTD with existing XNI tools without modification or rewriting code.

<dependency>
    <groupId>nekohtml</groupId>
    <artifactId>nekodtd</artifactId>
    <version>0.1.11</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of nekohtml : nekodtd to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.1.11

All Versions

Choose a version of nekohtml : nekodtd to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.1.x
nekodtd-0.1.11

How to add a dependency to Maven

Add the following nekohtml : nekodtd maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>nekohtml</groupId>
    <artifactId>nekodtd</artifactId>
    <version>0.1.11</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following nekohtml : nekodtd gradle dependency to your build.gradle file:

implementation 'nekohtml:nekodtd:0.1.11'

Gradle Kotlin DSL: Add the following nekohtml : nekodtd gradle kotlin dependency to your build.gradle.kts file:

implementation("nekohtml:nekodtd:0.1.11")

How to add a dependency to SBT Scala

SBT Scala: Add the following nekohtml : nekodtd sbt scala dependency to your build.sbt file:

libraryDependencies += "nekohtml" % "nekodtd" % "0.1.11"

Advertisement