14 October 2011

DataExporter dependent jars - iText and Apache POI version

If you are using PrimeFaces 3.x and wish to use dataExporter for producing pdf and xls files, iText and Apache POI jars are required. If you are using Maven please include the following dependencies.


         <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>3.7</version>
        </dependency>
         <dependency>
            <groupId>com.lowagie</groupId>
            <artifactId>itext</artifactId>
            <version>2.1.7</version>
          </dependency>