Fork me on GitHub

Maven Taglib Plugin

The Taglib Plug-in is a Maven plugin for jsp tag libraries developers. It eases the generation, documentation and testing of jsp tag libraries.

Basic configuration

Adds the following to your pom.xml to enable generation of taglib reports:

  <reporting>
      <plugin>
        <groupId>io.github.weblegacy</groupId>
        <artifactId>taglib-maven-plugin</artifactId>
        <version>2.6</version>
      </plugin>
    </plugins>
  </reporting>

This will trigger the generation of:

  • tldDoc documentation
  • a tag library validation report
  • a tag reference page

For advanced usage see the usage section.