<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>

   <parent>
      <groupId>com.github.datatables4j</groupId>
      <artifactId>datatables4j-parent</artifactId>
      <version>0.8.3</version>
   </parent>

   <artifactId>datatables4j-export-itext</artifactId>
   <version>0.1.3</version>
   <packaging>jar</packaging>

   <name>DataTables4j :: Module :: Export/iText</name>
   <description>DataTables4j export module that uses iText</description>

   <properties>
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      <datatables4j.version>0.8.3-SNAPSHOT</datatables4j.version>
      <slf4j.version>1.6.4</slf4j.version>
   </properties>
   
   <dependencies>
      <dependency>
         <groupId>com.github.datatables4j</groupId>
         <artifactId>datatables4j-core-api</artifactId>
         <version>0.8.3</version>
      </dependency>

      <dependency>
         <groupId>com.itextpdf</groupId>
         <artifactId>itextpdf</artifactId>
         <version>5.3.4</version>
      </dependency>

      <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-api</artifactId>
         <scope>compile</scope>
      </dependency>
   </dependencies>
   
      <scm>
      <connection>scm:git:git://github.com/datatables4j/datatables4j-export-itext.git</connection>
      <developerConnection>scm:git:git@github.com:datatables4j/datatables4j-export-itext.git</developerConnection>
      <url>http://github.com/datatables4j/datatables4j-export-itext</url>
   </scm>
</project>