<?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>
  <parent>
    <groupId>com.github.nbbrd.spreadsheet4j</groupId>
    <artifactId>spreadsheet-parent</artifactId>
    <version>v2.2.2</version>
  </parent>
  <groupId>com.github.nbbrd.spreadsheet4j</groupId>
  <artifactId>spreadsheet-poi</artifactId>
  <version>v2.2.2</version>
  <name>nbbrd/spreadsheet4j</name>
  <description>Spreadsheet facade for Java</description>
  <url>https://github.com/nbbrd/spreadsheet4j</url>
  <inceptionYear>2016</inceptionYear>
  <developers>
    <developer>
      <id>nbbrd</id>
      <name>NBB Research and Development</name>
      <email></email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git://github.com/nbbrd/spreadsheet4j.git</connection>
    <developerConnection>scm:git://github.com/nbbrd/spreadsheet4j.git</developerConnection>
    <url>git://github.com/nbbrd/spreadsheet4j.git</url>
  </scm>
  <properties>
    <poi.version>4.0.0</poi.version>
    <disruptor.version>3.4.2</disruptor.version>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi</artifactId>
        <version>${poi.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi-ooxml</artifactId>
        <version>${poi.version}</version>
      </dependency>
      <dependency>
        <groupId>com.lmax</groupId>
        <artifactId>disruptor</artifactId>
        <version>${disruptor.version}</version>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.netbeans.api</groupId>
      <artifactId>org-openide-util-lookup</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.github.nbbrd.spreadsheet4j</groupId>
      <artifactId>spreadsheet-api</artifactId>
      <version>v2.2.2</version>
    </dependency>
    <dependency>
      <groupId>be.nbb.rd</groupId>
      <artifactId>java-io-util</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.poi</groupId>
      <artifactId>poi</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.poi</groupId>
      <artifactId>poi-ooxml</artifactId>
    </dependency>
    <dependency>
      <groupId>com.lmax</groupId>
      <artifactId>disruptor</artifactId>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.github.nbbrd.spreadsheet4j</groupId>
      <artifactId>spreadsheet-tck</artifactId>
      <version>v2.2.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.openjdk.jmh</groupId>
      <artifactId>jmh-core</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.openjdk.jmh</groupId>
      <artifactId>jmh-generator-annprocess</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
