SeamFramework.orgCommunity Documentation

Seam Reports Module

Reference Guide


Most features of Seam Reports are installed automatically by including the seam-reports-api.jar and the respective provider implementation (along with its dependencies) in the web application library folder. If you are using Maven as your build tool, you can add the following dependency to your pom.xml file:


<dependency>
    <groupId>org.jboss.seam.reports</groupId>
    <artifactId>seam-reports-api</artifactId>
    <version>${seam-reports-version}</version>
</dependency>

<!-- If you are using Jasper Reports, add the following dependency --> 
<dependency>
    <groupId>org.jboss.seam.reports</groupId>
    <artifactId>seam-reports-jasper</artifactId>
    <version>${seam-reports-version}</version>
</dependency>

<!-- If you are using Pentaho, add the following dependency --> 
<dependency>
    <groupId>org.jboss.seam.reports</groupId>
    <artifactId>seam-reports-pentaho</artifactId>
    <version>${seam-reports-version}</version>
</dependency>

Tip

Replace ${seam-reports-version} with the most recent or appropriate version of Seam Reports.