Skins

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

SkinVersionDescription
Maven Application Skin1.0A skin used by applications like Archiva and Continuum.
Maven Classic Skin1.1This skin resembles the look of a site generated by Maven 1.
Maven Default Skin1.1You get this skin if you don't specify any skin.
Maven Stylus Skin1.5The skin used for the website of Maven itself.
Maven Fluido Skin1.3.0Skin based on bootstrap css

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 Classic Skin, you would include the this in your site.xml file:

<project>
  ...
  <skin>
    <groupId>org.apache.maven.skins</groupId>
    <artifactId>maven-classic-skin</artifactId>
    <version>1.1</version>
  </skin>
  ...
</project>