<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.github.rostrovsky</groupId>
  <artifactId>pdf-table</artifactId>
  <version>1.0.0</version>
  <name>PDF-Table</name>
  <description>PDF-table is Java utility library that can be used for parsing tabular data in PDF documents.
Core processing of PDF documents is performed with utilization of Apache PDFBox and OpenCV.</description>
  <url>https://github.com/rostrovsky/pdf-table</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>https://github.com/rostrovsky/pdf-table/LICENSE</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>rostrovsky</id>
      <name>Rafal Ostrowski</name>
      <email></email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/rostrovsky/pdf-table.git</connection>
    <developerConnection>scm:git:git@github.com:rostrovsky/pdf-table.git</developerConnection>
    <url>https://github.com/rostrovsky/pdf-table</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.apache.pdfbox</groupId>
      <artifactId>pdfbox</artifactId>
      <version>2.0.19</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.pdfbox</groupId>
      <artifactId>pdfbox-tools</artifactId>
      <version>2.0.19</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
      <version>3.5</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.openpnp</groupId>
      <artifactId>opencv</artifactId>
      <version>3.4.2-2</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>7.1.0</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
