Available Skins

The following table lists skins that are available for you to use in your Maven generated site.

Supported By The Maven Project

Skin Version Site Plugin Version Description Source Repository Issue Tracking
Maven Default Skin 1.2 [3.5,) You get this skin if you don't specify any skin or template. GIT / GitHub JIRA
Maven Fluido Skin 1.7 [3.7,) Skin based on Bootstrap CSS. GIT / GitHub JIRA

Retired

Skin Version Site Plugin Version Retired Date Description
Maven Application Skin 1.0 (,3.4] 2015-12-28 A skin used by applications like Continuum.
Maven Classic Skin 1.1 (,3.4] 2015-12-28 This skin resembles the look of a site generated by Maven 1.
Maven Stylus Skin 1.5 (,3.4] 2015-12-28 The skin used for the website of Maven itself.

Outside The Maven Land

Skin Maintainer Description
Reflow Maven Skin Andrius Velykis Responsive Apache Maven skin to reflow the standard Maven site with a modern fe

Instructions

To use one of these skins in your project, you use the skin element of the site descriptor. This is a regular artifact or dependency-like element. For example, to use the Maven Fluido Skin, you would include the this in your site.xml file:

<project>
  ...
  <skin>
    <groupId>org.apache.maven.skins</groupId>
    <artifactId>maven-fluido-skin</artifactId>
    <version>1.7</version>
  </skin>
  ...
</project>