<?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>net.christophermerrill</groupId>
  <artifactId>FancyFxTree</artifactId>
  <version>3.1</version>
  <name>FancyFxTree</name>
  <description>An extension of JavaFX TreeView that makes it easy to implement a sophisticated tree with editing, drag-n-drop, dynamic updates without designing your data model around the TreeView expectations.</description>
  <url>https://github.com/ChrisLMerrill/FancyFxTree</url>
  <inceptionYear>2017</inceptionYear>
  <licenses>
    <license>
      <name>Apache-2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>ChrisLMerrill</id>
      <name>Chris Merrill</name>
      <email>osdev@christophermerrill.net</email>
    </developer>
  </developers>
  <scm>
    <connection>https://github.com/ChrisLMerrill/FancyFxTree.git</connection>
    <developerConnection>https://github.com/ChrisLMerrill</developerConnection>
    <url>https://github.com/ChrisLMerrill/FancyFxTree</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.christophermerrill</groupId>
      <artifactId>TestFxUtils</artifactId>
      <version>1.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.testfx</groupId>
      <artifactId>testfx-core</artifactId>
      <version>4.0.8-alpha</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.testfx</groupId>
      <artifactId>testfx-junit</artifactId>
      <version>4.0.8-alpha</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.testfx</groupId>
      <artifactId>testfx-legacy</artifactId>
      <version>4.0.8-alpha</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jfxtras</groupId>
      <artifactId>openjfx-monocle</artifactId>
      <version>1.8.0_20</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
