Created
February 3, 2015 15:53
-
-
Save mikeatlas/2aa388cf1e598e9e554e to your computer and use it in GitHub Desktop.
GeoMesa GDELT Ingest CDH 5.3 Accumulo 1.6 pom.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> | |
<groupId>geomesa-gdelt</groupId> | |
<artifactId>geomesa-gdelt-accumulo1.5</artifactId> | |
<name>GeoMesa GDELT</name> | |
<version>1.0-SNAPSHOT</version> | |
<properties> | |
<accumulo.version>1.6.0</accumulo.version> | |
<hadoop.version>2.5.0-cdh5.3.0</hadoop.version> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-core-accumulo1.5</artifactId> | |
<version>1.0.0-rc.3-SNAPSHOT</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.accumulo</groupId> | |
<artifactId>accumulo-core</artifactId> | |
<version>${accumulo.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.accumulo</groupId> | |
<artifactId>accumulo-start</artifactId> | |
<version>${accumulo.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-opengis</artifactId> | |
<version>11.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-data</artifactId> | |
<version>11.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-epsg-hsql</artifactId> | |
<version>11.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hadoop</groupId> | |
<artifactId>hadoop-client</artifactId> | |
<version>${hadoop.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>joda-time</groupId> | |
<artifactId>joda-time</artifactId> | |
<version>2.3</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hadoop</groupId> | |
<artifactId>hadoop-client</artifactId> | |
<version>${hadoop.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.google.guava</groupId> | |
<artifactId>guava</artifactId> | |
<version>16.0.1</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-cli</groupId> | |
<artifactId>commons-cli</artifactId> | |
<version>1.2</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>net.alchim31.maven</groupId> | |
<artifactId>scala-maven-plugin</artifactId> | |
<version>3.1.6</version> | |
<executions> | |
<execution> | |
<id>scala-compile-first</id> | |
<phase>process-resources</phase> | |
<goals> | |
<goal>add-source</goal> | |
<goal>compile</goal> | |
</goals> | |
</execution> | |
<execution> | |
<id>scala-test-compile</id> | |
<phase>process-test-resources</phase> | |
<goals> | |
<goal>testCompile</goal> | |
</goals> | |
</execution> | |
</executions> | |
<configuration> | |
<recompileMode>incremental</recompileMode> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-shade-plugin</artifactId> | |
<version>2.0</version> | |
<executions> | |
<execution> | |
<phase>package</phase> | |
<goals> | |
<goal>shade</goal> | |
</goals> | |
<configuration> | |
<createDependencyReducedPom>false</createDependencyReducedPom> | |
<artifactSet> | |
<excludes> | |
<exclude>org.slf4j:*</exclude> | |
</excludes> | |
</artifactSet> | |
<filters> | |
<filter> | |
<artifact>*:*</artifact> | |
<excludes> | |
<exclude>META-INF/*.SF</exclude> | |
<exclude>META-INF/*.DSA</exclude> | |
<exclude>META-INF/*.RSA</exclude> | |
</excludes> | |
</filter> | |
</filters> | |
<transformers> | |
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> | |
</transformers> | |
<relocations> | |
<relocation> | |
<pattern>org.joda</pattern> | |
<shadedPattern>org.shaded.joda</shadedPattern> | |
<excludes> | |
<exclude>org.joda</exclude> | |
</excludes> | |
</relocation> | |
</relocations> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
<repositories> | |
<repository> | |
<id>locationtech</id> | |
<url>https://repo.locationtech.org/content/repositories/releases</url> | |
</repository> | |
<repository> | |
<id>central</id> | |
<layout>default</layout> | |
<url>http://repo1.maven.org/maven2</url> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>cloudera</id> | |
<url>https://repository.cloudera.com/artifactory/cloudera-repos/</url> | |
</repository> | |
<repository> | |
<id>geotools</id> | |
<url>http://download.osgeo.org/webdav/geotools</url> | |
</repository> | |
<repository> | |
<id>boundlessgeo</id> | |
<url>http://repo.boundlessgeo.com/main</url> | |
</repository> | |
<repository> | |
<id>conjars.org</id> | |
<url>http://conjars.org/repo</url> | |
</repository> | |
</repositories> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment