| <?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/maven-v4_0_0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.apache.drill.test</groupId> |
| <artifactId>framework</artifactId> |
| <packaging>jar</packaging> |
| <version>1.0.0-SNAPSHOT</version> |
| <properties> |
| <testng.version>6.4</testng.version> |
| <log4j.version>1.2.17</log4j.version> |
| <jackson.version>2.8.11</jackson.version> |
| <drill.version>${env.DRILL_VERSION}</drill.version> |
| <hadoop.version>${env.HADOOP_VERSION}</hadoop.version> |
| <runtimeDepenencies>${env.DRILL_HOME}/conf</runtimeDepenencies> |
| <maven.surefire.plugin.version>2.19.1</maven.surefire.plugin.version> |
| </properties> |
| <dependencies> |
| <dependency> |
| <groupId>xerces</groupId> |
| <artifactId>xercesImpl</artifactId> |
| <version>2.8.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.ojai</groupId> |
| <artifactId>ojai</artifactId> |
| <version>1.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.zookeeper</groupId> |
| <artifactId>zookeeper</artifactId> |
| <version>3.4.6</version> |
| </dependency> |
| <dependency> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| <version>${log4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>log4j</groupId> |
| <artifactId>apache-log4j-extras</artifactId> |
| <version>${log4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.12</version> |
| </dependency> |
| <dependency> |
| <groupId>org.json</groupId> |
| <artifactId>json</artifactId> |
| <version>20090211</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sdicons.jsontools</groupId> |
| <artifactId>jsontools-core</artifactId> |
| <version>1.7</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>16.0.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-client</artifactId> |
| <version>${hadoop.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.codehaus.jackson</groupId> |
| <artifactId>jackson-mapper-asl</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-json</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpclient</artifactId> |
| <version>4.5.5</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.drill.exec</groupId> |
| <artifactId>drill-jdbc-all</artifactId> |
| <version>${drill.version}</version> |
| <systemPath>${env.DRILL_HOME}/jars/jdbc-driver/drill-jdbc-all-${drill.version}.jar</systemPath> |
| <scope>system</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.beust</groupId> |
| <artifactId>jcommander</artifactId> |
| <version>1.30</version> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| <artifactId>jackson-jaxrs-json-provider</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-core</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-databind</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-annotations</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.testng</groupId> |
| <artifactId>testng</artifactId> |
| <version>${testng.version}</version> |
| </dependency> |
| </dependencies> |
| <repositories> |
| <repository> |
| <id>mapr-releases</id> |
| <url>http://repository.mapr.com/maven/</url> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| <snapshots> |
| <enabled>false</enabled> |
| </snapshots> |
| </repository> |
| </repositories> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-shade-plugin</artifactId> |
| <version>3.1.0</version> |
| <configuration> |
| <shadedArtifactAttached>true</shadedArtifactAttached> |
| <transformers> |
| <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| <mainClass>org.apache.drill.test.framework.TestDriver</mainClass> |
| </transformer> |
| </transformers> |
| </configuration> |
| <executions> |
| <execution> |
| <id>shade</id> |
| <!--phase>package</phase--> |
| <!-- default --> |
| <goals> |
| <goal>shade</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>2.6</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-clean-plugin</artifactId> |
| <version>2.5</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.1</version> |
| <configuration> |
| <source>1.8</source> |
| <target>1.8</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-install-plugin</artifactId> |
| <version>2.4</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>2.4</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>test-jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| <profiles> |
| <profile> |
| <id>download</id> |
| <activation> |
| <activeByDefault>false</activeByDefault> |
| </activation> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>com.googlecode.maven-download-plugin</groupId> |
| <artifactId>download-maven-plugin</artifactId> |
| <version>1.2.0</version> |
| <executions> |
| <execution> |
| <id>install-tpcds-hivegenerate-parquet</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>http://apache-drill.s3.amazonaws.com/files/tpcds_hivegenerated_parquet.tgz</url> |
| <outputFileName>tpcds_hivegenerated_parquet.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources</outputDirectory> |
| <md5>b585a419fb5ceda6daa91a8bc19c2365</md5> |
| </configuration> |
| </execution> |
| <execution> |
| <id>install-tpcds1-hive1dot2-withdate</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>http://apache-drill.s3.amazonaws.com/files/tpcds1_hive1dot2_withdate.tgz</url> |
| <outputFileName>tpcds1_hive1dot2_withdate.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>install-complexga100k-tgz-json</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>http://apache-drill.s3.amazonaws.com/files/complexga100k.json.tgz</url> |
| <outputFileName>complexga100k.json.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/complex/json</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>install-complex-tgz-json</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>http://apache-drill.s3.amazonaws.com/files/complex.json.tgz</url> |
| <outputFileName>complex.json.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/complex/json</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>install-mondrian-tgz-parquet</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>http://apache-drill.s3.amazonaws.com/files/mondrian_parquet.tgz</url> |
| <outputFileName>mondrian_parquet.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/mondrian</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>schema_change_empty_batch</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3.amazonaws.com/apache-drill/files/schema_change_empty_batch.tgz</url> |
| <outputFileName>schema_change_empty_batch.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/schema_change_empty_batch/</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>func-passing-widestrings-large</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3.amazonaws.com/apache-drill/files/func-passing-widestrings-large.tgz</url> |
| <outputFileName>func-passing-widestrings-large.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory> |
| ${project.basedir}/resources/Functional/data-shapes/wide-columns/5000/1000rows/parquet/ |
| </outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>flatten-operators-100000rows</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3.amazonaws.com/apache-drill/files/flatten-operators-100000rows.tgz</url> |
| <outputFileName>flatten-operators-100000rows.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/flatten_operators/</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>func-passing-flatten-operators-large</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3.amazonaws.com/apache-drill/files/func-passing-flatten-operators-large.tgz</url> |
| <outputFileName>func-passing-flatten-operators-large.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Functional/flatten_operators/100000rows/ |
| </outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>tpch_sf1_parquet</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3-us-west-1.amazonaws.com/drill-public/tpch/sf1/tpch_sf1_parquet.tar.gz</url> |
| <outputFileName>tpch_sf1_parquet.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/tpch/sf1/parquet</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>tpch_sf1_json</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3-us-west-1.amazonaws.com/drill-public/tpch/sf1/tpch_sf1_json.tar.gz</url> |
| <outputFileName>tpch_sf1_json.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/tpch/sf1/json</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>tpch_sf1_text</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3-us-west-1.amazonaws.com/drill-public/tpch/sf1/tpch_sf1_text.tar.gz</url> |
| <outputFileName>tpch_sf1_text.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/tpch/sf1/text</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>tpch_sf1_maprdb_json</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3-us-west-1.amazonaws.com/drill-public/tpch/sf1/tpch_sf1_maprdb_json.tar.gz</url> |
| <outputFileName>tpch_sf1_maprdb_json.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/tpch/sf1/maprdb/json</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>tpcds_sf1_parquet</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3.amazonaws.com/apache-drill/files/tpcds/tpcds_sf1_parquet.tar.gz</url> |
| <outputFileName>tpcds_sf1_parquet.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/tpcds/sf1/parquet</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>tpcds_sf1_json</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3.amazonaws.com/apache-drill/files/tpcds/tpcds_sf1_json.tar.gz</url> |
| <outputFileName>tpcds_sf1_json.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/tpcds/sf1/json</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>tpcds_text_sf1</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3.amazonaws.com/apache-drill/files/tpcds/tpcds_sf1_text.tar.gz</url> |
| <outputFileName>tpcds_text_sf1.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/tpcds/sf1/text</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>tpcds_sf1_maprdb_json</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>https://s3-us-west-1.amazonaws.com/drill-public/tpcds/sf1/tpcds_sf1_maprdb_json.tar.gz</url> |
| <outputFileName>tpcds_sf1_maprdb_json.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/tpcds/sf1/maprdb/json</outputDirectory> |
| </configuration> |
| </execution> |
| <execution> |
| <id>md1119_parquet</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| <configuration> |
| <url>http://apache-drill.s3.amazonaws.com/files/md1119_parquet.tgz</url> |
| <outputFileName>md1119_parquet.tgz</outputFileName> |
| <unpack>true</unpack> |
| <outputDirectory>${project.basedir}/resources/Datasources/hive_storage/</outputDirectory> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| <profile> |
| <id>testng</id> |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>testngtest</id> |
| <goals> |
| <goal>test</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <suiteXmlFiles> |
| <suiteXmlFile>testng-java.xml</suiteXmlFile> |
| </suiteXmlFiles> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <source>1.8</source> |
| <target>1.8</target> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| </profile> |
| </profiles> |
| </project> |