Blank Maven Skin

A Maven skin that does not provide any skinning, just outputs the result HTML pages.

License

License

Categories

Categories

Maven Build Tools
GroupId

GroupId

lt.velykis.maven.skins
ArtifactId

ArtifactId

blank-maven-skin
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

Blank Maven Skin
A Maven skin that does not provide any skinning, just outputs the result HTML pages.
Project URL

Project URL

http://github.com/andriusvelykis/blank-maven-skin
Project Organization

Project Organization

Andrius Velykis
Source Code Management

Source Code Management

http://github.com/andriusvelykis/blank-maven-skin/tree/master

Download blank-maven-skin

How to add to project

<!-- https://jarcasting.com/artifacts/lt.velykis.maven.skins/blank-maven-skin/ -->
<dependency>
    <groupId>lt.velykis.maven.skins</groupId>
    <artifactId>blank-maven-skin</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/lt.velykis.maven.skins/blank-maven-skin/
implementation 'lt.velykis.maven.skins:blank-maven-skin:1.0.0'
// https://jarcasting.com/artifacts/lt.velykis.maven.skins/blank-maven-skin/
implementation ("lt.velykis.maven.skins:blank-maven-skin:1.0.0")
'lt.velykis.maven.skins:blank-maven-skin:jar:1.0.0'
<dependency org="lt.velykis.maven.skins" name="blank-maven-skin" rev="1.0.0">
  <artifact name="blank-maven-skin" type="jar" />
</dependency>
@Grapes(
@Grab(group='lt.velykis.maven.skins', module='blank-maven-skin', version='1.0.0')
)
libraryDependencies += "lt.velykis.maven.skins" % "blank-maven-skin" % "1.0.0"
[lt.velykis.maven.skins/blank-maven-skin "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Blank Maven skin

Blank Maven skin renders the Maven site pages without any additional skinning or decoration. It only outputs the contents of each page.

The skin uses short title as output's <title> tag. If one is not available, tries to derive it from the first <h1> header in the content.

Usage

To use this Maven skin, include it in your site.xml file:

<project>
  ...
  <skin>
    <groupId>lt.velykis.maven.skins</groupId>
    <artifactId>blank-maven-skin</artifactId>
    <version>1.0.0</version>
  </skin>
  ...
</project>

The skin requires Velocity >= 1.7 when generating Maven site. Add it as a dependency to maven-site-plugin in your POM file:

<build>
  <plugins>
    ...
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-site-plugin</artifactId>
      <version>3.2</version>
      <dependencies>
        ...
        <!-- Blank skin requires Velocity >= 1.7  -->
        <dependency>
          <groupId>org.apache.velocity</groupId>
          <artifactId>velocity</artifactId>
          <version>1.7</version>
        </dependency>
        ...
      </dependencies>
      ...
    </plugin>
    ...
  </plugins>
</build>

Bug tracker

Have a bug or a feature request? Please create an issue here on GitHub that conforms with necolas's guidelines.

http://github.com/andriusvelykis/blank-maven-skin/issues

Contributing

Fork the repository and submit pull requests.

Author

Andrius Velykis

Copyright and license

Copyright 2013 Andrius Velykis

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or 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.

Versions

Version
1.0.0