Doxia Sitetools :: Site Renderer Component.
The Site Renderer handles the rendering of sites..
Here is the list of declaration for doxia-site-renderer. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-site-renderer</artifactId> <version>1.1.3</version> </dependency>
If you think this Maven repository POM file listing for doxia-site-renderer is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The doxia-site-renderer-1.1.3 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Template | velocity 1.5 Apache Velocity is a general purpose template engine. | 63 |
Data Structure | commons-collections 3.2 Types that extend and augment the Java Collections Framework. | 366 |
JUnit | htmlunit 1.13 A tool for testing web based applications | 7 |
The following packages are defined in the doxia-site-renderer-1.1.3.jar
org.apache.maven.doxia.siterenderer org.apache.maven.doxia.siterenderer.sink
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>doxia-sitetools</artifactId> <groupId>org.apache.maven.doxia</groupId> <version>1.1.3</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>doxia-site-renderer</artifactId> <name>Doxia Sitetools :: Site Renderer Component</name> <description>The Site Renderer handles the rendering of sites.</description> <contributors> <contributor> <name>Vincent Siveton</name> <email>vsiveton@apache.org</email> <organization>Apache Software Foundation</organization> <roles> <role>Java Developer</role> </roles> <timezone>-5</timezone> </contributor> </contributors> <dependencies> <!-- doxia --> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-core</artifactId> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-logging-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-sink-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-decoration-model</artifactId> </dependency> <!-- The modules are not in doxia core anymore so you have to state a dependency so that the component descriptor gets picked up. --> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-apt</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-confluence</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-docbook-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-xdoc</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-xhtml</artifactId> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-fml</artifactId> </dependency> <!-- plexus --> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-i18n</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-velocity</artifactId> <version>1.1.7</version> <exclusions> <exclusion> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-api</artifactId> </exclusion> <exclusion> <groupId>velocity</groupId> <artifactId>velocity</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </dependency> <!-- misc --> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.5</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2</version> </dependency> <!-- test --> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-core</artifactId> <version>${doxiaVersion}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>htmlunit</groupId> <artifactId>htmlunit</artifactId> <version>1.13</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>reporting</id> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>l10n-maven-plugin</artifactId> <version>1.0-alpha-2</version> <configuration> <locales> <locale>de</locale> <locale>en</locale> <locale>es</locale> <locale>fr</locale> <locale>it</locale> <locale>ja</locale> <locale>nl</locale> <locale>pl</locale> <locale>pt_BR</locale> <locale>zh_CN</locale> </locales> </configuration> </plugin> </plugins> </reporting> </profile> </profiles> </project>