geomesa-arrow-dist_2.11
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.locationtech.geomesa</groupId>
<artifactId>geomesa-arrow-dist_2.11</artifactId>
<version>3.5.2</version>
</dependency><?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.locationtech.geomesa</groupId>
<artifactId>geomesa-archetypes-binary-dist_2.11</artifactId>
<relativePath>../../geomesa-archetypes/geomesa-archetypes-binary-dist/pom.xml</relativePath>
<version>3.5.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<artifactId>geomesa-arrow-dist_2.11</artifactId>
<name>GeoMesa Arrow Distribution</name>
<properties>
<tools.module>arrow</tools.module>
<tools.dist.name>GEOMESA_ARROW</tools.dist.name>
<tools.runner>org.locationtech.geomesa.arrow.tools.ArrowRunner</tools.runner>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- Tools (bin,lib,etc)-->
<dependency>
<groupId>org.locationtech.geomesa</groupId>
<artifactId>geomesa-arrow-tools_${scala.binary.version}</artifactId>
</dependency>
<!-- GeoServer plugin - needed as a dependency for reactor ordering, but don't bring in transitive deps -->
<dependency>
<groupId>org.locationtech.geomesa</groupId>
<artifactId>geomesa-arrow-gs-plugin_${scala.binary.version}</artifactId>
<type>pom</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- additional deps to manage in for deploying to lib dir-->
<dependency>
<groupId>org.locationtech.geomesa</groupId>
<artifactId>geomesa-arrow-datastore_${scala.binary.version}</artifactId>
</dependency>
<!-- Here we include Guava since it is the only dependency needed for the GM converter library and
we know that it will not conflict. -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>