JTidy.
JTidy is a Java port of HTML Tidy, a HTML syntax checker and pretty printer. Like its non-Java cousin, JTidy can be used as a tool for cleaning up malformed and faulty HTML. In addition, JTidy provides a DOM parser for real-world HTML. Hudson modifications: ===================== ....
Here is the list of declaration for jtidy. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jvnet.hudson</groupId> <artifactId>jtidy</artifactId> <version>4aug2000r7-dev-hudson-1</version> </dependency>
If you think this Maven repository POM file listing for jtidy is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Java HTML Tidy License
URL: http://svn.sourceforge.net/viewvc/*checkout*/jtidy/trunk/jtidy/LICENSE.txt?revision=95.
The following table lists the most popular artifacts which are depending on jtidy-4aug2000r7-dev-hudson-1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Framework | hudson-core 1.379 Contains the core Hudson code and view files to render HTML. | 5 |
Web Framework | hudson-core 2.1.0 Contains the core Hudson code and view files to render HTML. | 6 |
The following plugins are used in the jtidy-4aug2000r7-dev-hudson-1.jar
The following packages are defined in the jtidy-4aug2000r7-dev-hudson-1.jar
org.w3c.tidy
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.jvnet.hudson</groupId> <artifactId>jtidy</artifactId> <version>4aug2000r7-dev-hudson-1</version> <name>JTidy</name> <url>http://jtidy.sourceforge.net</url> <description> JTidy is a Java port of HTML Tidy, a HTML syntax checker and pretty printer. Like its non-Java cousin, JTidy can be used as a tool for cleaning up malformed and faulty HTML. In addition, JTidy provides a DOM parser for real-world HTML. Hudson modifications: ===================== Removed SAX APIs </description> <organization> <name>JTidy</name> <url>http://jtidy.sf.net</url> </organization> <licenses> <license> <name>Java HTML Tidy License</name> <url>http://svn.sourceforge.net/viewvc/*checkout*/jtidy/trunk/jtidy/LICENSE.txt?revision=95</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:svn:https://svn.sourceforge.net/svnroot/jtidy/trunk/jtidy/</connection> <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/jtidy/trunk/jtidy/</developerConnection> <url>http://svn.sourceforge.net/viewcvs.cgi/jtidy/trunk/jtidy/</url> </scm> <distributionManagement> <repository> <uniqueVersion>false</uniqueVersion> <id>java.net-m2-repository</id> <url>java-net:/maven2-repository/trunk/www/repository/</url> </repository> </distributionManagement> <build> <plugins> <!-- fake out maven and install the binary artifact --> <plugin> <groupId>org.jvnet.maven-antrun-extended-plugin</groupId> <artifactId>maven-antrun-extended-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <attachArtifact file="jtidy-4aug2000r7-dev.jar" /> <attachArtifact file="jtidy-4aug2000r7-dev-sources.jar" classifier="sources" type="jar"/> </tasks> </configuration> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.8</version> </extension> </extensions> </build> </project>