Michael Blow | 786ed61 | 2017-07-20 11:19:38 -0400 | [diff] [blame] | 1 | <!-- |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 2 | ! Licensed to the Apache Software Foundation (ASF) under one |
| 3 | ! or more contributor license agreements. See the NOTICE file |
| 4 | ! distributed with this work for additional information |
| 5 | ! regarding copyright ownership. The ASF licenses this file |
| 6 | ! to you under the Apache License, Version 2.0 (the |
| 7 | ! "License"); you may not use this file except in compliance |
| 8 | ! with the License. You may obtain a copy of the License at |
| 9 | ! |
| 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ! |
| 12 | ! Unless required by applicable law or agreed to in writing, |
| 13 | ! software distributed under the License is distributed on an |
| 14 | ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | ! KIND, either express or implied. See the License for the |
| 16 | ! specific language governing permissions and limitations |
| 17 | ! under the License. |
| 18 | !--> |
Vinayak Borkar | 9cca81b | 2013-12-11 21:53:45 -0800 | [diff] [blame] | 19 | <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"> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>apache-asterixdb</artifactId> |
| 23 | <groupId>org.apache.asterix</groupId> |
AsterixDB Jenkins | 0948b24 | 2017-11-20 15:56:08 -0800 | [diff] [blame] | 24 | <version>0.9.4-SNAPSHOT</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | <licenses> |
| 27 | <license> |
| 28 | <name>Apache License, Version 2.0</name> |
| 29 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 30 | <distribution>repo</distribution> |
| 31 | <comments>A business-friendly OSS license</comments> |
| 32 | </license> |
| 33 | </licenses> |
| 34 | <artifactId>asterix-external-data</artifactId> |
| 35 | <properties> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 36 | <root.dir>${basedir}/..</root.dir> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 37 | <generatedSourcesDirectory>${project.build.directory}/generated-sources/lexer/</generatedSourcesDirectory> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 38 | </properties> |
| 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 42 | <groupId>org.apache.asterix</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 43 | <artifactId>lexer-generator-maven-plugin</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 44 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 45 | <configuration> |
| 46 | <grammarFile>src/main/resources/adm.grammar</grammarFile> |
Till Westmann | 7255c5d | 2016-07-27 19:34:18 -0700 | [diff] [blame] | 47 | <outputDir>${project.build.directory}/generated-sources/lexer/org/apache/asterix/runtime/operators/file/adm</outputDir> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 48 | </configuration> |
| 49 | <executions> |
| 50 | <execution> |
| 51 | <id>generate-lexer</id> |
| 52 | <phase>generate-sources</phase> |
| 53 | <goals> |
| 54 | <goal>generate-lexer</goal> |
| 55 | </goals> |
| 56 | </execution> |
| 57 | </executions> |
| 58 | </plugin> |
| 59 | <plugin> |
| 60 | <groupId>org.codehaus.mojo</groupId> |
| 61 | <artifactId>build-helper-maven-plugin</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 62 | <executions> |
| 63 | <execution> |
| 64 | <id>add-source</id> |
| 65 | <phase>generate-sources</phase> |
| 66 | <goals> |
| 67 | <goal>add-source</goal> |
| 68 | </goals> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 69 | <configuration> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 70 | <sources> |
Till Westmann | 7255c5d | 2016-07-27 19:34:18 -0700 | [diff] [blame] | 71 | <source>${project.build.directory}/generated-sources/lexer/</source> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 72 | </sources> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 73 | </configuration> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 74 | </execution> |
| 75 | </executions> |
| 76 | </plugin> |
| 77 | <plugin> |
| 78 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 79 | <artifactId>maven-jaxb2-plugin</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 80 | <executions> |
| 81 | <execution> |
| 82 | <id>configuration</id> |
| 83 | <goals> |
| 84 | <goal>generate</goal> |
| 85 | </goals> |
| 86 | <configuration> |
| 87 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 88 | <schemaIncludes> |
| 89 | <include>library.xsd</include> |
| 90 | </schemaIncludes> |
| 91 | <generatePackage>org.apache.asterix.external.library</generatePackage> |
| 92 | <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory> |
| 93 | </configuration> |
| 94 | </execution> |
| 95 | </executions> |
| 96 | </plugin> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-jar-plugin</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 100 | <configuration> |
| 101 | <includes> |
| 102 | <include>**/*.class</include> |
| 103 | <include>**/*.txt</include> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 104 | <include>**/NOTICE</include> |
| 105 | <include>**/LICENSE</include> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 106 | <include>**/*.properties</include> |
Xikui Wang | f17def9 | 2017-01-10 14:46:44 -0800 | [diff] [blame] | 107 | <include>**/services/**</include> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 108 | </includes> |
| 109 | </configuration> |
| 110 | <executions> |
| 111 | <execution> |
| 112 | <goals> |
| 113 | <goal>test-jar</goal> |
| 114 | </goals> |
| 115 | <phase>package</phase> |
| 116 | </execution> |
| 117 | </executions> |
| 118 | </plugin> |
| 119 | <plugin> |
| 120 | <artifactId>maven-assembly-plugin</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 121 | <executions> |
| 122 | <execution> |
| 123 | <configuration> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 124 | <descriptors>src/main/assembly/binary-assembly-libzip.xml</descriptors> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 125 | </configuration> |
| 126 | <phase>package</phase> |
| 127 | <goals> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 128 | <goal>single</goal> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 129 | </goals> |
| 130 | </execution> |
| 131 | </executions> |
| 132 | </plugin> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 133 | <plugin> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 134 | <groupId>org.apache.rat</groupId> |
| 135 | <artifactId>apache-rat-plugin</artifactId> |
| 136 | <configuration> |
| 137 | <licenses combine.children="append"> |
| 138 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 139 | <licenseFamilyCategory>Kermit</licenseFamilyCategory> |
| 140 | <licenseFamilyName>Kermit Project</licenseFamilyName> |
Michael Blow | 0757011 | 2017-04-11 21:38:31 -0400 | [diff] [blame] | 141 | <notes>The UTF-8 sample "I Can Eat Glass" from The Kermit Project (license in LICENSE file)</notes> |
| 142 | <patterns>Copyright © 1981-2011, Trustees of Columbia University in the City of New York. All rights reserved.</patterns> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 143 | </license> |
| 144 | </licenses> |
| 145 | <licenseFamilies combine.children="append"> |
| 146 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 147 | <familyName>Kermit Project</familyName> |
| 148 | </licenseFamily> |
| 149 | </licenseFamilies> |
| 150 | <excludes combine.children="append"> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 151 | <exclude>src/test/resources/classad/**</exclude> <!-- HTCondor (license in LICENSE file) --> |
| 152 | <exclude>src/test/resources/record.json</exclude> <!-- https://issues.apache.org/jira/browse/ASTERIXDB-1850 --> |
| 153 | <exclude>src/test/resources/change_feed.csv</exclude> |
Xikui Wang | 46518ba | 2017-05-29 22:55:51 -0700 | [diff] [blame] | 154 | <exclude>src/test/resources/test_tweets.txt</exclude> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 155 | </excludes> |
| 156 | </configuration> |
| 157 | </plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 158 | </plugins> |
| 159 | <pluginManagement> |
| 160 | <plugins> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 161 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 162 | <plugin> |
| 163 | <groupId>org.eclipse.m2e</groupId> |
| 164 | <artifactId>lifecycle-mapping</artifactId> |
| 165 | <version>1.0.0</version> |
| 166 | <configuration> |
| 167 | <lifecycleMappingMetadata> |
| 168 | <pluginExecutions> |
| 169 | <pluginExecution> |
| 170 | <pluginExecutionFilter> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 171 | <groupId> org.apache.asterix</groupId> |
| 172 | <artifactId> lexer-generator-maven-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 173 | <versionRange>[0.0,)</versionRange> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 174 | <goals> |
| 175 | <goal>generate-lexer</goal> |
| 176 | </goals> |
| 177 | </pluginExecutionFilter> |
| 178 | <action> |
| 179 | <execute> |
| 180 | <runOnIncremental>false</runOnIncremental> |
| 181 | </execute> |
| 182 | </action> |
| 183 | </pluginExecution> |
| 184 | <pluginExecution> |
| 185 | <pluginExecutionFilter> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 186 | <groupId> org.codehaus.mojo</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 187 | <artifactId>build-helper-maven-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 188 | <versionRange>[0.0,)</versionRange> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 189 | <goals> |
| 190 | <goal>add-source</goal> |
| 191 | </goals> |
| 192 | </pluginExecutionFilter> |
| 193 | <action> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 194 | <ignore /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 195 | </action> |
| 196 | </pluginExecution> |
| 197 | </pluginExecutions> |
| 198 | </lifecycleMappingMetadata> |
| 199 | </configuration> |
| 200 | </plugin> |
Xikui Wang | 993f0ed | 2018-07-17 11:47:30 -0700 | [diff] [blame] | 201 | <plugin> |
| 202 | <groupId>org.apache.maven.plugins</groupId> |
| 203 | <artifactId>maven-dependency-plugin</artifactId> |
| 204 | <configuration> |
| 205 | <usedDependencies combine.children="append"> |
| 206 | <usedDependency>com.sun.xml.bind:jaxb-core</usedDependency> |
| 207 | <usedDependency>com.sun.xml.bind:jaxb-impl</usedDependency> |
| 208 | <usedDependency>com.sun.activation:javax.activation</usedDependency> |
| 209 | </usedDependencies> |
| 210 | </configuration> |
| 211 | </plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 212 | </plugins> |
| 213 | </pluginManagement> |
| 214 | </build> |
| 215 | <dependencies> |
| 216 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 217 | <groupId>org.apache.asterix</groupId> |
| 218 | <artifactId>asterix-om</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 219 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 220 | <type>jar</type> |
| 221 | <scope>compile</scope> |
| 222 | </dependency> |
| 223 | <dependency> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 224 | <groupId>org.apache.hyracks</groupId> |
| 225 | <artifactId>hyracks-test-support</artifactId> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 226 | <scope>test</scope> |
| 227 | </dependency> |
| 228 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 229 | <groupId>org.apache.asterix</groupId> |
| 230 | <artifactId>asterix-runtime</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 231 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 232 | </dependency> |
| 233 | <dependency> |
| 234 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 235 | <artifactId>hyracks-hdfs</artifactId> |
Abdullah Alamoudi | 973a0d3 | 2016-07-22 14:38:56 +0300 | [diff] [blame] | 236 | </dependency> |
| 237 | <dependency> |
| 238 | <groupId>org.apache.asterix</groupId> |
| 239 | <artifactId>asterix-common</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 240 | <version>${project.version}</version> |
Abdullah Alamoudi | 973a0d3 | 2016-07-22 14:38:56 +0300 | [diff] [blame] | 241 | </dependency> |
| 242 | <dependency> |
| 243 | <groupId>org.apache.asterix</groupId> |
| 244 | <artifactId>asterix-active</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 245 | <version>${project.version}</version> |
Abdullah Alamoudi | 973a0d3 | 2016-07-22 14:38:56 +0300 | [diff] [blame] | 246 | </dependency> |
| 247 | <dependency> |
Ian Maxon | 5226ca8 | 2017-01-13 12:19:44 -0800 | [diff] [blame] | 248 | <groupId>org.apache.asterix</groupId> |
| 249 | <artifactId>asterix-hivecompat</artifactId> |
| 250 | <version>${project.version}</version> |
| 251 | </dependency> |
| 252 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 253 | <groupId>org.twitter4j</groupId> |
| 254 | <artifactId>twitter4j-core</artifactId> |
| 255 | <version>4.0.3</version> |
Ian Maxon | 5226ca8 | 2017-01-13 12:19:44 -0800 | [diff] [blame] | 256 | <scope>provided</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 257 | </dependency> |
| 258 | <dependency> |
| 259 | <groupId>org.twitter4j</groupId> |
| 260 | <artifactId>twitter4j-stream</artifactId> |
| 261 | <version>4.0.3</version> |
Ian Maxon | 5226ca8 | 2017-01-13 12:19:44 -0800 | [diff] [blame] | 262 | <scope>provided</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 263 | </dependency> |
| 264 | <dependency> |
Till Westmann | 7d68c67 | 2017-07-19 11:14:12 -0700 | [diff] [blame] | 265 | <groupId>com.rometools</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 266 | <artifactId>rome-fetcher</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 267 | </dependency> |
| 268 | <dependency> |
Till Westmann | 7d68c67 | 2017-07-19 11:14:12 -0700 | [diff] [blame] | 269 | <groupId>com.rometools</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 270 | <artifactId>rome</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 271 | </dependency> |
| 272 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 273 | <groupId>org.apache.hive</groupId> |
Ian Maxon | 5226ca8 | 2017-01-13 12:19:44 -0800 | [diff] [blame] | 274 | <artifactId>hive-serde</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 275 | </dependency> |
| 276 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 277 | <groupId>com.e-movimento.tinytools</groupId> |
| 278 | <artifactId>privilegedaccessor</artifactId> |
| 279 | <version>1.2.2</version> |
| 280 | <scope>test</scope> |
| 281 | </dependency> |
| 282 | <dependency> |
| 283 | <groupId>com.couchbase.client</groupId> |
| 284 | <artifactId>core-io</artifactId> |
Abdullah Alamoudi | 9747c4b | 2016-08-26 10:45:09 +0300 | [diff] [blame] | 285 | <version>1.3.2</version> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 286 | </dependency> |
| 287 | <dependency> |
| 288 | <groupId>org.mockito</groupId> |
| 289 | <artifactId>mockito-all</artifactId> |
| 290 | <version>2.0.2-beta</version> |
| 291 | <scope>test</scope> |
| 292 | </dependency> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 293 | <dependency> |
| 294 | <groupId>org.apache.hyracks</groupId> |
| 295 | <artifactId>hyracks-api</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 296 | <type>test-jar</type> |
| 297 | <scope>test</scope> |
| 298 | </dependency> |
Till Westmann | 42620f6 | 2016-11-23 11:52:24 -0800 | [diff] [blame] | 299 | <dependency> |
| 300 | <groupId>org.apache.wicket</groupId> |
Till Westmann | 42620f6 | 2016-11-23 11:52:24 -0800 | [diff] [blame] | 301 | <artifactId>wicket-util</artifactId> |
| 302 | <version>1.5.2</version> |
| 303 | <scope>test</scope> |
| 304 | </dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 305 | <dependency> |
| 306 | <groupId>commons-io</groupId> |
| 307 | <artifactId>commons-io</artifactId> |
| 308 | </dependency> |
| 309 | <dependency> |
| 310 | <groupId>org.apache.hyracks</groupId> |
| 311 | <artifactId>hyracks-dataflow-common</artifactId> |
| 312 | </dependency> |
| 313 | <dependency> |
| 314 | <groupId>org.apache.hyracks</groupId> |
| 315 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 316 | </dependency> |
| 317 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 318 | <groupId>org.apache.hyracks</groupId> |
| 319 | <artifactId>algebricks-data</artifactId> |
| 320 | </dependency> |
| 321 | <dependency> |
| 322 | <groupId>org.apache.hyracks</groupId> |
| 323 | <artifactId>algebricks-core</artifactId> |
| 324 | </dependency> |
| 325 | <dependency> |
| 326 | <groupId>org.apache.hyracks</groupId> |
| 327 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 328 | </dependency> |
| 329 | <dependency> |
| 330 | <groupId>org.apache.hyracks</groupId> |
| 331 | <artifactId>algebricks-runtime</artifactId> |
| 332 | </dependency> |
| 333 | <dependency> |
| 334 | <groupId>org.apache.hyracks</groupId> |
| 335 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 336 | </dependency> |
| 337 | <dependency> |
| 338 | <groupId>org.apache.hyracks</groupId> |
| 339 | <artifactId>hyracks-storage-common</artifactId> |
| 340 | </dependency> |
| 341 | <dependency> |
| 342 | <groupId>org.apache.httpcomponents</groupId> |
| 343 | <artifactId>httpclient</artifactId> |
| 344 | </dependency> |
| 345 | <dependency> |
| 346 | <groupId>org.apache.hyracks</groupId> |
| 347 | <artifactId>hyracks-util</artifactId> |
| 348 | </dependency> |
| 349 | <dependency> |
| 350 | <groupId>org.apache.hyracks</groupId> |
| 351 | <artifactId>algebricks-common</artifactId> |
| 352 | </dependency> |
| 353 | <dependency> |
| 354 | <groupId>org.apache.hadoop</groupId> |
| 355 | <artifactId>hadoop-common</artifactId> |
| 356 | </dependency> |
| 357 | <dependency> |
| 358 | <groupId>org.apache.hadoop</groupId> |
| 359 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
| 360 | </dependency> |
| 361 | <dependency> |
| 362 | <groupId>org.apache.hyracks</groupId> |
| 363 | <artifactId>hyracks-storage-am-rtree</artifactId> |
| 364 | </dependency> |
| 365 | <dependency> |
| 366 | <groupId>org.apache.commons</groupId> |
| 367 | <artifactId>commons-lang3</artifactId> |
| 368 | </dependency> |
| 369 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 370 | <groupId>junit</groupId> |
| 371 | <artifactId>junit</artifactId> |
Murtadha Hubail | e25df7d | 2017-09-19 11:17:38 -0700 | [diff] [blame] | 372 | <scope>test</scope> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 373 | </dependency> |
| 374 | <dependency> |
| 375 | <groupId>org.apache.hyracks</groupId> |
| 376 | <artifactId>hyracks-dataflow-std</artifactId> |
| 377 | </dependency> |
| 378 | <dependency> |
| 379 | <groupId>org.apache.hyracks</groupId> |
| 380 | <artifactId>hyracks-data-std</artifactId> |
| 381 | </dependency> |
| 382 | <dependency> |
| 383 | <groupId>org.apache.hyracks</groupId> |
| 384 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 385 | </dependency> |
| 386 | <dependency> |
| 387 | <groupId>org.apache.hyracks</groupId> |
| 388 | <artifactId>hyracks-storage-am-common</artifactId> |
| 389 | </dependency> |
| 390 | <dependency> |
| 391 | <groupId>org.apache.hyracks</groupId> |
| 392 | <artifactId>hyracks-api</artifactId> |
| 393 | </dependency> |
| 394 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 395 | <groupId>com.fasterxml.jackson.core</groupId> |
| 396 | <artifactId>jackson-databind</artifactId> |
| 397 | </dependency> |
Wail Alkowaileet | 733fba8 | 2017-12-07 20:05:35 -0800 | [diff] [blame] | 398 | <dependency> |
| 399 | <groupId>com.fasterxml.jackson.core</groupId> |
| 400 | <artifactId>jackson-core</artifactId> |
| 401 | </dependency> |
| 402 | <dependency> |
| 403 | <groupId>org.apache.commons</groupId> |
| 404 | <artifactId>commons-collections4</artifactId> |
| 405 | <version>4.1</version> |
| 406 | </dependency> |
Murtadha Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 407 | <dependency> |
| 408 | <groupId>org.apache.logging.log4j</groupId> |
| 409 | <artifactId>log4j-api</artifactId> |
| 410 | </dependency> |
Xikui Wang | 993f0ed | 2018-07-17 11:47:30 -0700 | [diff] [blame] | 411 | <dependency> |
| 412 | <groupId>com.sun.xml.bind</groupId> |
| 413 | <artifactId>jaxb-core</artifactId> |
| 414 | </dependency> |
| 415 | <dependency> |
| 416 | <groupId>com.sun.xml.bind</groupId> |
| 417 | <artifactId>jaxb-impl</artifactId> |
| 418 | </dependency> |
| 419 | <dependency> |
| 420 | <groupId>com.sun.activation</groupId> |
| 421 | <artifactId>javax.activation</artifactId> |
| 422 | </dependency> |
Michael Blow | 3477a2b | 2018-10-04 17:17:35 -0400 | [diff] [blame^] | 423 | <dependency> |
| 424 | <groupId>com.esri.geometry</groupId> |
| 425 | <artifactId>esri-geometry-api</artifactId> |
| 426 | <version>2.0.0</version> |
| 427 | </dependency> |
| 428 | <dependency> |
| 429 | <groupId>javax.xml.bind</groupId> |
| 430 | <artifactId>jaxb-api</artifactId> |
| 431 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 432 | </dependencies> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 433 | </project> |