Repository: hbase Updated Branches: refs/heads/master eb79a4358 -> db15d6e6a
HBASE-11640 Add syntax highlighting support to HBase Ref Guide programlistings ADDENDUM Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/db15d6e6 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/db15d6e6 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/db15d6e6 Branch: refs/heads/master Commit: db15d6e6a7d8c0448c7791a634ce2b97806a4bb8 Parents: eb79a43 Author: stack <[email protected]> Authored: Fri Aug 1 16:03:46 2014 -0700 Committer: stack <[email protected]> Committed: Fri Aug 1 16:04:39 2014 -0700 ---------------------------------------------------------------------- pom.xml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/db15d6e6/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 6b7b65e..11fd559 100644 --- a/pom.xml +++ b/pom.xml @@ -781,13 +781,22 @@ <version>4.4</version> <scope>runtime</scope> </dependency> + <dependency> + <groupId>net.sf.xslthl</groupId> + <artifactId>xslthl</artifactId> + <version>2.1.0</version> + <scope>runtime</scope> + </dependency> </dependencies> <configuration> + <highlightSource>1</highlightSource> + <imgSrcPath>${basedir}/src/main/site/resources/images/</imgSrcPath> <sourceDirectory>${basedir}/src/main/docbkx</sourceDirectory> <xincludeSupported>true</xincludeSupported> <useIdAsFilename>true</useIdAsFilename> <sectionAutolabelMaxDepth>100</sectionAutolabelMaxDepth> <sectionAutolabel>true</sectionAutolabel> + <htmlStylesheet>${baserdir}/src/main/site/resources/css/freebsd_docbook.css</htmlStylesheet> <sectionLabelIncludesComponentLabel>true</sectionLabelIncludesComponentLabel> <htmlCustomization>${basedir}/src/main/docbkx/customization.xsl</htmlCustomization> <tocMaxDepth>2</tocMaxDepth> @@ -804,8 +813,6 @@ <configuration> <navigShowtitles>true</navigShowtitles> <chunkedOutput>true</chunkedOutput> - <imgSrcPath>${basedir}/src/main/site/resources/images/</imgSrcPath> - <htmlStylesheet>../css/freebsd_docbook.css</htmlStylesheet> <targetDirectory>${basedir}/target/docbkx/book</targetDirectory> <preProcess> <copy todir="target/docbkx/book/images"> @@ -824,8 +831,6 @@ </goals> <phase>pre-site</phase> <configuration> - <imgSrcPath>${basedir}/src/main/site/resources/images/</imgSrcPath> - <htmlStylesheet>css/freebsd_docbook.css</htmlStylesheet> <targetDirectory>${basedir}/target/docbkx/</targetDirectory> <preProcess> <copy todir="target/docbkx/images">
