<?xml version="1.0" encoding="UTF-8"?>
<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.floragunn.search-guard-encryption-at-rest</groupId>
    <artifactId>search-guard-encryption-at-rest-parent</artifactId>
    <version>${revision}</version>
  </parent>

  <artifactId>search-guard-encryption-at-rest-lucene</artifactId>
  <version>${revision}</version>
  <packaging>jar</packaging>

  <name>Search Guard Encryption at Rest Lucene</name>
  <description>Search Guard Encryption at Rest Plugin: Encryption at Rest for Elasticsearch</description>

  <properties>
    <config-file.eclipse-formatter>${project.basedir}${file.separator}..${file.separator}eclipse-code-format-profile.xml</config-file.eclipse-formatter>
  </properties>

  <dependencies>

    <dependency>
      <groupId>org.apache.lucene</groupId>
      <artifactId>lucene-core</artifactId>
      <scope>provided</scope>
    </dependency>

    <!-- Test dependencies -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.carrotsearch.randomizedtesting</groupId>
      <artifactId>randomizedtesting-runner</artifactId>
      <version>2.8.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.lucene</groupId>
      <artifactId>lucene-test-framework</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
