JHighlight.
JHighlight is an embeddable pure Java syntax highlighting library that supports Java, HTML, XHTML, XML and LZX languages and outputs to XHTML. It also supports RIFE templates tags and highlights them clearly so that you can easily identify the difference between your RIFE m....
Here is the list of declaration for jhighlight. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.uwyn</groupId> <artifactId>jhighlight</artifactId> <version>1.0</version> </dependency>
If you think this Maven repository POM file listing for jhighlight is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:CDDL, v1.0
URL: http://www.opensource.org/licenses/cddl1.phpName:LGPL, v2.1 or later
URL: http://www.opensource.org/licenses/lgpl-license.php.
The following packages are defined in the jhighlight-1.0.jar
com.uwyn.jhighlight com.uwyn.jhighlight.highlighter com.uwyn.jhighlight.pcj com.uwyn.jhighlight.pcj.hash com.uwyn.jhighlight.pcj.map com.uwyn.jhighlight.pcj.set com.uwyn.jhighlight.pcj.util com.uwyn.jhighlight.renderer com.uwyn.jhighlight.servlet com.uwyn.jhighlight.tools com.uwyn.jhighlight.tools.exceptions
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <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>com.uwyn</groupId> <artifactId>jhighlight</artifactId> <name>JHighlight</name> <version>1.0</version> <description> JHighlight is an embeddable pure Java syntax highlighting library that supports Java, HTML, XHTML, XML and LZX languages and outputs to XHTML. It also supports RIFE templates tags and highlights them clearly so that you can easily identify the difference between your RIFE markup and the actual marked up source. </description> <url>https://jhighlight.dev.java.net/</url> <inceptionYear>2005</inceptionYear> <licenses> <license> <name>CDDL, v1.0</name> <url>http://www.opensource.org/licenses/cddl1.php</url> <distribution>repo</distribution> </license> <license> <name>LGPL, v2.1 or later</name> <url>http://www.opensource.org/licenses/lgpl-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:svn:https://svn.rifers.org/jhighlight</connection> <url>https://svn.rifers.org/jhighlight/trunk/</url> </scm> <issueManagement> <url>http://uwyn.com/issues/browse/JHL</url> </issueManagement> <organization> <name>Uwyn</name> <url>http://uwyn.com/</url> </organization> <build> <sourceDirectory>src</sourceDirectory> <resources> <resource> <directory>src</directory> <includes> <include>jhighlight.properties</include> <include>JHIGHLIGHT_VERSION</include> </includes> </resource> </resources> </build> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.3</version> </dependency> </dependencies> </project>