Created
February 2, 2015 20:31
-
-
Save mikeatlas/dcca70e6dba6e3e6c00f to your computer and use it in GitHub Desktop.
GeoMesa 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"?> | |
<!-- | |
~ Copyright 2014 Commonwealth Computer Research, Inc. | |
~ | |
~ Licensed under the Apache License, Version 2.0 (the "License"); | |
~ you may not use this file except in compliance with the License. | |
~ You may obtain a copy of the License at | |
~ | |
~ http://www.apache.org/licenses/LICENSE-2.0 | |
~ | |
~ Unless required by applicable law or agreed to in writing, software | |
~ distributed under the License is distributed on an "AS IS" BASIS, | |
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
~ See the License for the specific language governing permissions and | |
~ limitations under the License. | |
--> | |
<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>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-accumulo1.6</artifactId> | |
<version>1.0.0-rc.3-SNAPSHOT</version> | |
<packaging>pom</packaging> | |
<name>GeoMesa - [Accumulo 1.6]</name> | |
<modules> | |
<module>geomesa-utils</module> | |
<module>geomesa-core</module> | |
<module>geomesa-distributed-runtime</module> | |
<module>geomesa-jobs</module> | |
<module>geomesa-plugin</module> | |
<module>geomesa-filter</module> | |
<module>geomesa-feature</module> | |
<module>geomesa-tools</module> | |
<module>geomesa-compute</module> | |
<module>geomesa-assemble</module> | |
<module>geomesa-web</module> | |
</modules> | |
<properties> | |
<scala.version>2.10.4</scala.version> | |
<geoserver.version>2.5.2</geoserver.version> | |
<gt.version>11.2</gt.version> | |
<jts.version>1.13</jts.version> | |
<jackson.codehaus.version>1.9.3</jackson.codehaus.version> | |
<!-- environment-dependent versions --> | |
<zookeeper.version>3.4.5</zookeeper.version> | |
<accumulo.version>1.6.0</accumulo.version> | |
<hadoop.version>2.5.0-cdh5.3.0</hadoop.version> | |
<scalding.version>0.11.2</scalding.version> | |
<!-- logging properties | |
we expect logging jars to be provided --> | |
<!-- accumulo 1.4.3 is incompatible with a 1.5.6+ version of slf4j --> | |
<!-- 1.7.x is for hadoop 2 and accumulo 1.5.x --> | |
<slf4j.version>1.7.5</slf4j.version> | |
<scalalogging.version>1.1.0</scalalogging.version> | |
<log4j.version>1.2.17</log4j.version> | |
<!-- distribution properties --> | |
<dist.accumulo.lib.ext>accumulo/lib/ext</dist.accumulo.lib.ext> | |
<dist.hdfs>hdfs</dist.hdfs> | |
<dist.geoserver.lib>geoserver/WEB-INF/lib</dist.geoserver.lib> | |
<dist.dev>dev</dist.dev> | |
<!-- testing properties --> | |
<maven.test.jvmargs>-Xms1g -Xmx2g -XX:MaxPermSize=1024m -XX:-UseGCOverheadLimit</maven.test.jvmargs> | |
<fork.mode>once</fork.mode> | |
<avro.version>1.7.5</avro.version> | |
<accumuloSuffix>accumulo1.6</accumuloSuffix> | |
</properties> | |
<profiles> | |
<profile> | |
<id>debug-tests</id> | |
<properties> | |
<maven.test.jvmargs>-Xms1g -Xmx2g -XX:MaxPermSize=1024m -XX:-UseGCOverheadLimit -Xrunjdwp:transport=dt_socket,address=5000,server=y,suspend=y</maven.test.jvmargs> | |
</properties> | |
</profile> | |
<profile> | |
<id>build-minicluster</id> | |
<modules> | |
<module>geomesa-minicluster</module> | |
</modules> | |
</profile> | |
</profiles> | |
<distributionManagement> | |
<repository> | |
<id>repo.locationtech.org</id> | |
<name>GeoMesa Repository - Releases</name> | |
<url>https://repo.locationtech.org/content/repositories/geomesa-releases/</url> | |
</repository> | |
<snapshotRepository> | |
<id>repo.locationtech.org</id> | |
<name>GeoMesa Repository - Snapshots</name> | |
<url>https://repo.locationtech.org/content/repositories/geomesa-snapshots/</url> | |
</snapshotRepository> | |
</distributionManagement> | |
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>org.scala-lang</groupId> | |
<artifactId>scala-library</artifactId> | |
<version>${scala.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.scala-lang</groupId> | |
<artifactId>scala-compiler</artifactId> | |
<version>${scala.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.scala-lang</groupId> | |
<artifactId>jline</artifactId> | |
<version>${scala.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.scala-lang</groupId> | |
<artifactId>scala-reflect</artifactId> | |
<version>${scala.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>joda-time</groupId> | |
<artifactId>joda-time</artifactId> | |
<version>2.3</version> | |
</dependency> | |
<dependency> | |
<groupId>org.joda</groupId> | |
<artifactId>joda-convert</artifactId> | |
<version>1.6</version> | |
</dependency> | |
<dependency> | |
<groupId>com.vividsolutions</groupId> | |
<artifactId>jts</artifactId> | |
<version>${jts.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.spatial4j</groupId> | |
<artifactId>spatial4j</artifactId> | |
<version>0.4.1</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
<version>1.1.3</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-main</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-shapefile</artifactId> | |
<version>${gt.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-opengis</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>java3d</groupId> | |
<artifactId>vecmath</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-cql</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-metadata</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-data</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-imagemosaic</artifactId> | |
<version>${gt.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-referencing</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>jgridshift</groupId> | |
<artifactId>jgridshift</artifactId> | |
</exclusion> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>java3d</groupId> | |
<artifactId>vecmath</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-coverage</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_imageio</artifactId> | |
</exclusion> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-api</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-geojson</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-xml</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>commons-jxpath</groupId> | |
<artifactId>commons-jxpath</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools.xsd</groupId> | |
<artifactId>gt-xsd-core</artifactId> | |
<version>${gt.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-process</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_imageio</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-process-feature</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-render</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
<exclusion> | |
<artifactId>imageio-ext-tiff</artifactId> | |
<groupId>it.geosolutions.imageio-ext</groupId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-transform</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-grid</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>commons-pool</groupId> | |
<artifactId>commons-pool</artifactId> | |
<version>1.6</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-codec</groupId> | |
<artifactId>commons-codec</artifactId> | |
<version>1.8</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-net</groupId> | |
<artifactId>commons-net</artifactId> | |
<version>3.3</version> | |
</dependency> | |
<dependency> | |
<groupId>xerces</groupId> | |
<artifactId>xercesImpl</artifactId> | |
<version>2.10.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-vfs2</artifactId> | |
<version>2.0</version> | |
<exclusions> | |
<exclusion> | |
<groupId>org.apache.maven.scm</groupId> | |
<artifactId>maven-scm-api</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.maven.scm</groupId> | |
<artifactId>maven-scm-provider-svn-commons</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.apache.maven.scm</groupId> | |
<artifactId>maven-scm-provider-svnexe</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>com.twitter</groupId> | |
<artifactId>scalding-core_2.10</artifactId> | |
<version>${scalding.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues - replaced with version 0.9.0 (EPL) --> | |
<groupId>thirdparty</groupId> | |
<artifactId>jgrapht-jdk1.6</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.jgrapht</groupId> | |
<artifactId>jgrapht-core</artifactId> | |
<version>0.9.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.jgrapht</groupId> | |
<artifactId>jgrapht-ext</artifactId> | |
<version>0.9.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-csv</artifactId> | |
<version>1.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.calrissian.mango</groupId> | |
<artifactId>mango-core</artifactId> | |
<version>1.2.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-core-accumulo1.6</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-core-accumulo1.6</artifactId> | |
<version>${project.version}</version> | |
<type>test-jar</type> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-utils-accumulo1.6</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-filter-accumulo1.6</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-plugin-accumulo1.6</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-plugin-accumulo1.6</artifactId> | |
<classifier>geoserver-plugin</classifier> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-distributed-runtime-accumulo1.6</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-feature-accumulo1.6</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-tools-accumulo1.6</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-jobs-accumulo1.6</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-compute-accumulo1.6</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-compute-accumulo1.6</artifactId> | |
<classifier>shaded</classifier> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.locationtech.geomesa</groupId> | |
<artifactId>geomesa-assemble-accumulo1.6</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.guava</groupId> | |
<artifactId>guava</artifactId> | |
<version>11.0.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.geotools</groupId> | |
<artifactId>gt-geometry</artifactId> | |
<version>${gt.version}</version> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.spark</groupId> | |
<artifactId>spark-core_2.10</artifactId> | |
<version>1.2.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-math3</artifactId> | |
<version>3.3</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-io</groupId> | |
<artifactId>commons-io</artifactId> | |
<version>2.4</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-cli</groupId> | |
<artifactId>commons-cli</artifactId> | |
<version>1.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.avro</groupId> | |
<artifactId>avro</artifactId> | |
<version>${avro.version}</version> | |
<exclusions> | |
<exclusion> | |
<groupId>org.xerial.snappy</groupId> | |
<artifactId>snappy-java</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.codehaus.jackson</groupId> | |
<artifactId>jackson-core-asl</artifactId> | |
<version>${jackson.codehaus.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.codehaus.jackson</groupId> | |
<artifactId>jackson-mapper-asl</artifactId> | |
<version>${jackson.codehaus.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.codehaus.jackson</groupId> | |
<artifactId>jackson-jaxrs</artifactId> | |
<version>${jackson.codehaus.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.codehaus.jackson</groupId> | |
<artifactId>jackson-xc</artifactId> | |
<version>${jackson.codehaus.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.ow2.asm</groupId> | |
<artifactId>asm</artifactId> | |
<version>4.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hsqldb</groupId> | |
<artifactId>hsqldb</artifactId> | |
<version>2.3.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.objenesis</groupId> | |
<artifactId>objenesis</artifactId> | |
<version>1.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.typesafe</groupId> | |
<artifactId>scalalogging-slf4j_2.10</artifactId> | |
<version>${scalalogging.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>${slf4j.version}</version> | |
</dependency> | |
<!-- provided dependencies --> | |
<dependency> | |
<groupId>org.apache.accumulo</groupId> | |
<artifactId>accumulo-core</artifactId> | |
<version>${accumulo.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.accumulo</groupId> | |
<artifactId>accumulo-server</artifactId> | |
<version>${accumulo.version}</version> | |
<classifier>source</classifier> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.accumulo</groupId> | |
<artifactId>accumulo-server-base</artifactId> | |
<version>${accumulo.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.accumulo</groupId> | |
<artifactId>cloudtrace</artifactId> | |
<version>${accumulo.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.accumulo</groupId> | |
<artifactId>accumulo-start</artifactId> | |
<version>${accumulo.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hadoop</groupId> | |
<artifactId>hadoop-client</artifactId> | |
<version>${hadoop.version}</version> | |
<scope>provided</scope> | |
<exclusions> | |
<exclusion> | |
<groupId>org.mortbay.jetty</groupId> | |
<artifactId>jetty</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.mortbay.jetty</groupId> | |
<artifactId>jetty-util</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.mortbay.jetty</groupId> | |
<artifactId>jsp-api-2.1</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.mortbay.jetty</groupId> | |
<artifactId>jsp-2.1</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>hsqldb</groupId> | |
<artifactId>hsqldb</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.glassfish</groupId> | |
<artifactId>javax.servlet</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.zookeeper</groupId> | |
<artifactId>zookeeper</artifactId> | |
<version>${zookeeper.version}</version> | |
<exclusions> | |
<exclusion> | |
<groupId>javax.jms</groupId> | |
<artifactId>jms</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>com.sun.jmx</groupId> | |
<artifactId>jmxri</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>com.sun.jdmk</groupId> | |
<artifactId>jmxtools</artifactId> | |
</exclusion> | |
</exclusions> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.geoserver</groupId> | |
<artifactId>gs-main</artifactId> | |
<version>${geoserver.version}</version> | |
<scope>provided</scope> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geoserver.web</groupId> | |
<artifactId>gs-web-core</artifactId> | |
<version>${geoserver.version}</version> | |
<scope>provided</scope> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geoserver.extension</groupId> | |
<artifactId>gs-wps-core</artifactId> | |
<version>${geoserver.version}</version> | |
<scope>provided</scope> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geoserver</groupId> | |
<artifactId>gs-ows</artifactId> | |
<version>${geoserver.version}</version> | |
<scope>provided</scope> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geoserver</groupId> | |
<artifactId>gs-platform</artifactId> | |
<version>${geoserver.version}</version> | |
<scope>provided</scope> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.geoserver</groupId> | |
<artifactId>gs-wfs</artifactId> | |
<version>${geoserver.version}</version> | |
<scope>provided</scope> | |
<exclusions> | |
<exclusion> | |
<!-- excluded due to license issues --> | |
<groupId>javax.media</groupId> | |
<artifactId>jai_core</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.wicket</groupId> | |
<artifactId>wicket</artifactId> | |
<version>1.4.12</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.wicket</groupId> | |
<artifactId>wicket-extensions</artifactId> | |
<version>1.4.12</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-webmvc</artifactId> | |
<version>3.1.4.RELEASE</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<!-- marked provided due to license issues --> | |
<groupId>com.google.code.findbugs</groupId> | |
<artifactId>jsr305</artifactId> | |
<version>1.3.9</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<!-- marked provided due to license issues --> | |
<groupId>jline</groupId> | |
<artifactId>jline</artifactId> | |
<version>1.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.beust</groupId> | |
<artifactId>jcommander</artifactId> | |
<version>1.32</version> | |
</dependency> | |
<!-- test dependencies --> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-log4j12</artifactId> | |
<version>${slf4j.version}</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>log4j</groupId> | |
<artifactId>log4j</artifactId> | |
<version>${log4j.version}</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.specs2</groupId> | |
<artifactId>specs2_2.10</artifactId> | |
<version>2.3.13</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.5</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.accumulo</groupId> | |
<artifactId>accumulo-test</artifactId> | |
<version>${accumulo.version}</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
</dependencyManagement> | |
<build> | |
<testResources> | |
<testResource> | |
<directory>src/test/resources</directory> | |
<filtering>false</filtering> | |
</testResource> | |
</testResources> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-release-plugin</artifactId> | |
<version>2.4</version> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-assembly-plugin</artifactId> | |
<version>2.4</version> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>2.3.2</version> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
<version>2.4</version> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-shade-plugin</artifactId> | |
<version>2.2</version> | |
<executions> | |
<execution> | |
<configuration> | |
<relocations> | |
<relocation> | |
<pattern>org.joda</pattern> | |
<shadedPattern>org.shaded.joda</shadedPattern> | |
<excludes> | |
<exclude>org.joda</exclude> | |
</excludes> | |
</relocation> | |
</relocations> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>net.alchim31.maven</groupId> | |
<artifactId>scala-maven-plugin</artifactId> | |
<version>3.2.0</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> | |
<jvmArgs> | |
<jvmArg>-Xms1024m</jvmArg> | |
<jvmArg>-Xmx4096m</jvmArg> | |
<jvmArg>-XX:MaxPermSize=1024m</jvmArg> | |
</jvmArgs> | |
<args> | |
<arg>-nowarn</arg> | |
<arg>-unchecked</arg> | |
<arg>-deprecation</arg> | |
</args> | |
<scalaVersion>${scala.version}</scalaVersion> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
<version>2.17</version> | |
<configuration> | |
<forkMode>${fork.mode}</forkMode> | |
<includes> | |
<include>**/*Test.java</include> | |
</includes> | |
<argLine>${maven.test.jvmargs}</argLine> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-release-plugin</artifactId> | |
<version>2.4</version> | |
<configuration> | |
<preparationGoals>clean install</preparationGoals> | |
<autoVersionSubmodules>true</autoVersionSubmodules> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<scm> | |
<connection>scm:git:[email protected]:locationtech/geomesa.git</connection> | |
<developerConnection>scm:git:[email protected]:locationtech/geomesa.git</developerConnection> | |
<url>https://github.com/locationtech/geomesa</url> | |
<tag>HEAD</tag> | |
</scm> | |
<repositories> | |
<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