vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 2 | <!-- |
| 3 | ! Copyright 2009-2013 by The Regents of the University of California |
| 4 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ! you may not use this file except in compliance with the License. |
| 6 | ! you may obtain a copy of the License from |
| 7 | ! |
| 8 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ! |
| 10 | ! Unless required by applicable law or agreed to in writing, software |
| 11 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ! See the License for the specific language governing permissions and |
| 14 | ! limitations under the License. |
| 15 | !--> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 16 | <project |
| 17 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 21 | <groupId>org.apache.asterix</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 22 | <artifactId>asterix</artifactId> |
| 23 | <version>0.8.7-SNAPSHOT</version> |
| 24 | <packaging>pom</packaging> |
| 25 | |
Ian Maxon | 5c058c6 | 2015-08-21 16:06:15 -0700 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.apache</groupId> |
| 28 | <artifactId>apache</artifactId> |
| 29 | <version>LATEST</version> |
| 30 | </parent> |
| 31 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 32 | <licenses> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 33 | <license> |
| 34 | <name>Apache License, Version 2.0</name> |
| 35 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 36 | <distribution>repo</distribution> |
| 37 | <comments>A business-friendly OSS license</comments> |
| 38 | </license> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 39 | </licenses> |
| 40 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 41 | <properties> |
| 42 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 43 | <jvm.extraargs /> |
| 44 | <runSlowAQLTests>false</runSlowAQLTests> |
Chris Hillery | b5c85ac | 2014-02-21 02:33:37 -0800 | [diff] [blame] | 45 | |
| 46 | <!-- Definition of tests in various categories which may be excluded --> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 47 | <optimizer.tests>**/optimizer/**/*Test.java</optimizer.tests> |
| 48 | <metadata.tests>**/metadata/*Test.java</metadata.tests> |
| 49 | <execution.tests>**/ExecutionTest.java</execution.tests> |
Ian Maxon | c9a3a9b | 2015-07-31 15:27:39 -0700 | [diff] [blame] | 50 | <repeated.tests>**/RepeatedTest.java</repeated.tests> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 51 | <invalid.tests>**/DmlTest.java</invalid.tests> |
| 52 | <global.test.includes>**/*TestSuite.java,**/*Test.java,${execution.tests}</global.test.includes> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 53 | <global.test.excludes>${optimizer.tests},${metadata.tests},${invalid.tests},${repeated.tests}</global.test.excludes> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 54 | <!-- Versions under dependencymanagement or used in many projects via properties --> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 55 | <algebricks.version>0.2.16-SNAPSHOT</algebricks.version> |
| 56 | <hyracks.version>0.2.16-SNAPSHOT</hyracks.version> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 57 | <hadoop.version>2.2.0</hadoop.version> |
Ian Maxon | 69375a1 | 2015-06-29 16:12:53 -0700 | [diff] [blame] | 58 | <junit.version>4.11</junit.version> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 59 | <commons.io.version>2.4</commons.io.version> |
| 60 | <servlet.api.version>2.5</servlet.api.version> |
| 61 | <json.version>20090211</json.version> |
| 62 | </properties> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 63 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 64 | <build> |
| 65 | <plugins> |
| 66 | <plugin> |
| 67 | <groupId>org.apache.maven.plugins</groupId> |
| 68 | <artifactId>maven-release-plugin</artifactId> |
Ian Maxon | 3580639 | 2015-08-31 10:22:41 -1000 | [diff] [blame^] | 69 | <version>2.5.2</version> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 70 | <configuration> |
| 71 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 72 | </configuration> |
| 73 | </plugin> |
| 74 | <plugin> |
| 75 | <groupId>org.apache.maven.plugins</groupId> |
| 76 | <artifactId>maven-surefire-plugin</artifactId> |
| 77 | <version>2.16</version> |
| 78 | <configuration> |
| 79 | <failIfNoTests>false</failIfNoTests> |
| 80 | <systemPropertyVariables> |
| 81 | <skipFredSlowTests>true</skipFredSlowTests> |
| 82 | </systemPropertyVariables> |
| 83 | <forkCount>1</forkCount> |
| 84 | <reuseForks>false</reuseForks> |
| 85 | <argLine>-enableassertions -Xmx${test.heap.size}m |
| 86 | -Dfile.encoding=UTF-8 |
| 87 | -Djava.util.logging.config.file=${user.home}/logging.properties |
| 88 | -DrunSlowAQLTests=${runSlowAQLTests} |
| 89 | -Xdebug |
| 90 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
| 91 | <includes> |
| 92 | <include>${global.test.includes},${test.includes}</include> |
| 93 | </includes> |
| 94 | <excludes> |
| 95 | <exclude>${global.test.excludes},${test.excludes}</exclude> |
| 96 | </excludes> |
| 97 | </configuration> |
| 98 | </plugin> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 99 | <plugin> |
| 100 | <groupId>org.apache.rat</groupId> |
| 101 | <artifactId>apache-rat-plugin</artifactId> |
| 102 | <version>0.11</version> |
| 103 | <executions> |
| 104 | <execution> |
| 105 | <phase>verify</phase> |
| 106 | <goals> |
| 107 | <goal>check</goal> |
| 108 | </goals> |
| 109 | </execution> |
| 110 | </executions> |
| 111 | <configuration> |
| 112 | <excludeSubProjects>true</excludeSubProjects> |
| 113 | <licenses> |
| 114 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 115 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 116 | <licenseFamilyName>The MIT License</licenseFamilyName> |
| 117 | <notes>For JQuery MIT/GPL2 Dual License</notes> |
| 118 | <patterns> |
| 119 | <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern> |
| 120 | <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern> |
| 121 | <pattern>http://jquery.org/license</pattern> |
| 122 | <pattern>Dual licensed under the MIT</pattern> |
| 123 | <pattern>Released under the MIT license by IOLA, December 2007.</pattern> |
| 124 | </patterns> |
| 125 | </license> |
| 126 | </licenses> |
| 127 | <licenseFamilies> |
| 128 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 129 | <familyName>The MIT License</familyName> |
| 130 | </licenseFamily> |
| 131 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 132 | <familyName>Apache License Version 2.0</familyName> |
| 133 | </licenseFamily> |
| 134 | </licenseFamilies> |
| 135 | <excludes> |
| 136 | <exclude>**/*.adm</exclude> |
| 137 | <exclude>**/*.aql</exclude> |
| 138 | <exclude>**/*.csv</exclude> |
| 139 | <exclude>**/*.ddl</exclude> |
| 140 | <exclude>**/*.iml</exclude> |
| 141 | <exclude>**/*.out</exclude> |
| 142 | <exclude>**/*.tbl</exclude> |
| 143 | <exclude>**/*.tsv</exclude> |
| 144 | <exclude>**/*.txt</exclude> |
| 145 | <exclude>**/*.xsd</exclude> |
| 146 | </excludes> |
| 147 | <includes> |
| 148 | <include>**/asterix-*</include> |
| 149 | <include>**/*.java</include> |
| 150 | </includes> |
| 151 | </configuration> |
| 152 | </plugin> |
Ian Maxon | 032a178 | 2015-06-30 17:10:51 -0700 | [diff] [blame] | 153 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 154 | </plugins> |
| 155 | </build> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 156 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 157 | <scm> |
Ian Maxon | 5c058c6 | 2015-08-21 16:06:15 -0700 | [diff] [blame] | 158 | <connection>scm:git:https://github.com/apache/incubator-asterixdb</connection> |
| 159 | <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection> |
| 160 | <url>https://github.com/apache/incubator-asterixdb</url> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 161 | |
Ian Maxon | 5c058c6 | 2015-08-21 16:06:15 -0700 | [diff] [blame] | 162 | </scm> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 163 | |
| 164 | <profiles> |
| 165 | <profile> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 166 | <id>slow-aql-tests</id> |
| 167 | <properties> |
| 168 | <runSlowAQLTests>true</runSlowAQLTests> |
| 169 | </properties> |
| 170 | </profile> |
| 171 | <profile> |
| 172 | <id>optimizer-tests</id> |
| 173 | <properties> |
| 174 | <optimizer.tests /> |
| 175 | </properties> |
| 176 | </profile> |
| 177 | <profile> |
| 178 | <id>metadata-tests</id> |
| 179 | <properties> |
| 180 | <metadata.tests /> |
| 181 | </properties> |
| 182 | </profile> |
| 183 | <profile> |
| 184 | <id>execution-tests</id> |
| 185 | <properties> |
| 186 | <execution.tests /> |
| 187 | </properties> |
| 188 | </profile> |
| 189 | <profile> |
| 190 | <id>invalid-tests</id> |
| 191 | <properties> |
| 192 | <invalid.tests /> |
| 193 | </properties> |
| 194 | </profile> |
| 195 | <profile> |
| 196 | <id>32bitvm</id> |
| 197 | <activation> |
| 198 | <property> |
| 199 | <name>sun.arch.data.model</name> |
| 200 | <value>32</value> |
| 201 | </property> |
| 202 | </activation> |
| 203 | <properties> |
| 204 | <test.heap.size>2048</test.heap.size> |
| 205 | </properties> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 206 | </profile> |
| 207 | |
| 208 | <profile> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 209 | <id>64bitvm</id> |
| 210 | <activation> |
| 211 | <property> |
| 212 | <name>sun.arch.data.model</name> |
| 213 | <value>64</value> |
| 214 | </property> |
| 215 | </activation> |
| 216 | <properties> |
| 217 | <test.heap.size>3072</test.heap.size> |
| 218 | </properties> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 219 | </profile> |
Chris Hillery | cdfcb92 | 2014-02-07 03:05:02 -0800 | [diff] [blame] | 220 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 221 | </profiles> |
| 222 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 223 | <modules> |
| 224 | <module>asterix-common</module> |
| 225 | <module>asterix-algebra</module> |
| 226 | <module>asterix-app</module> |
| 227 | <module>asterix-tools</module> |
| 228 | <module>asterix-transactions</module> |
| 229 | <module>asterix-runtime</module> |
| 230 | <module>asterix-om</module> |
| 231 | <module>asterix-aql</module> |
zheilbron | 738005d | 2014-03-21 14:50:17 -0700 | [diff] [blame] | 232 | <module>asterix-external-data</module> |
| 233 | <module>asterix-examples</module> |
| 234 | <module>asterix-metadata</module> |
| 235 | <module>asterix-test-framework</module> |
| 236 | <module>asterix-maven-plugins</module> |
| 237 | <module>asterix-server</module> |
| 238 | <module>asterix-installer</module> |
| 239 | <module>asterix-events</module> |
| 240 | <module>asterix-doc</module> |
| 241 | <module>asterix-fuzzyjoin</module> |
Ian Maxon | 69375a1 | 2015-06-29 16:12:53 -0700 | [diff] [blame] | 242 | <module>asterix-yarn</module> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 243 | </modules> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 244 | |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 245 | <repositories> |
| 246 | <repository> |
| 247 | <releases> |
| 248 | <enabled>true</enabled> |
| 249 | <updatePolicy>always</updatePolicy> |
| 250 | <checksumPolicy>warn</checksumPolicy> |
| 251 | </releases> |
| 252 | <snapshots> |
| 253 | <enabled>true</enabled> |
| 254 | <updatePolicy>always</updatePolicy> |
| 255 | <checksumPolicy>fail</checksumPolicy> |
| 256 | </snapshots> |
| 257 | <id>asterix-public</id> |
| 258 | <url>http://obelix.ics.uci.edu/nexus/content/groups/asterix-public/</url> |
| 259 | </repository> |
| 260 | <repository> |
| 261 | <releases> |
| 262 | <enabled>true</enabled> |
| 263 | <updatePolicy>always</updatePolicy> |
| 264 | <checksumPolicy>warn</checksumPolicy> |
| 265 | </releases> |
| 266 | <snapshots> |
| 267 | <enabled>true</enabled> |
| 268 | <updatePolicy>always</updatePolicy> |
| 269 | <checksumPolicy>fail</checksumPolicy> |
| 270 | </snapshots> |
| 271 | <id>third-party</id> |
| 272 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party/</url> |
| 273 | </repository> |
| 274 | <repository> |
| 275 | <releases> |
| 276 | <enabled>true</enabled> |
| 277 | <updatePolicy>always</updatePolicy> |
| 278 | <checksumPolicy>warn</checksumPolicy> |
| 279 | </releases> |
| 280 | <id>algebricks-releases</id> |
| 281 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-releases/</url> |
| 282 | </repository> |
| 283 | <repository> |
| 284 | <snapshots> |
| 285 | <enabled>true</enabled> |
| 286 | <updatePolicy>always</updatePolicy> |
| 287 | <checksumPolicy>fail</checksumPolicy> |
| 288 | </snapshots> |
| 289 | <id>algebricks-snapshots</id> |
| 290 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/algebricks-snapshots/</url> |
| 291 | </repository> |
| 292 | </repositories> |
| 293 | <dependencyManagement> |
| 294 | <dependencies> |
| 295 | <dependency> |
| 296 | <groupId>junit</groupId> |
| 297 | <artifactId>junit</artifactId> |
| 298 | <version>${junit.version}</version> |
| 299 | </dependency> |
| 300 | <dependency> |
| 301 | <groupId>org.apache.maven</groupId> |
| 302 | <artifactId>maven-plugin-api</artifactId> |
| 303 | <version>2.2.1</version> |
| 304 | </dependency> |
| 305 | <dependency> |
| 306 | <groupId>org.apache.hadoop</groupId> |
| 307 | <artifactId>hadoop-yarn-common</artifactId> |
| 308 | <version>${hadoop.version}</version> |
| 309 | </dependency> |
| 310 | <dependency> |
| 311 | <groupId>org.apache.hadoop</groupId> |
| 312 | <artifactId>hadoop-yarn-client</artifactId> |
| 313 | <version>${hadoop.version}</version> |
| 314 | </dependency> |
| 315 | <dependency> |
| 316 | <groupId>org.apache.hadoop</groupId> |
| 317 | <artifactId>hadoop-client</artifactId> |
| 318 | <version>${hadoop.version}</version> |
| 319 | </dependency> |
| 320 | <dependency> |
| 321 | <groupId>org.apache.hadoop</groupId> |
| 322 | <artifactId>hadoop-hdfs</artifactId> |
| 323 | <version>${hadoop.version}</version> |
| 324 | </dependency> |
| 325 | <dependency> |
| 326 | <groupId>org.apache.hadoop</groupId> |
| 327 | <artifactId>hadoop-common</artifactId> |
| 328 | <version>${hadoop.version}</version> |
| 329 | </dependency> |
| 330 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 331 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 332 | <artifactId>algebricks-compiler</artifactId> |
| 333 | <version>${algebricks.version}</version> |
| 334 | </dependency> |
| 335 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 336 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 337 | <artifactId>hyracks-api</artifactId> |
| 338 | <version>${hyracks.version}</version> |
| 339 | </dependency> |
| 340 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 341 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 342 | <artifactId>hyracks-dataflow-std</artifactId> |
| 343 | <version>${hyracks.version}</version> |
| 344 | </dependency> |
| 345 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 346 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 347 | <artifactId>hyracks-control-cc</artifactId> |
| 348 | <version>${hyracks.version}</version> |
| 349 | </dependency> |
| 350 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 351 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 352 | <artifactId>hyracks-control-nc</artifactId> |
| 353 | <version>${hyracks.version}</version> |
| 354 | </dependency> |
| 355 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 356 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 357 | <artifactId>hyracks-server</artifactId> |
| 358 | <version>${hyracks.version}</version> |
| 359 | </dependency> |
| 360 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 361 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 362 | <artifactId>hyracks-cli</artifactId> |
| 363 | <version>${hyracks.version}</version> |
| 364 | </dependency> |
| 365 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 366 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 367 | <artifactId>hyracks-dataflow-hadoop</artifactId> |
| 368 | <version>${hyracks.version}</version> |
| 369 | </dependency> |
| 370 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 371 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 372 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 373 | <version>${hyracks.version}</version> |
| 374 | </dependency> |
| 375 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 376 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 377 | <artifactId>hyracks-storage-am-rtree</artifactId> |
| 378 | <version>${hyracks.version}</version> |
| 379 | </dependency> |
| 380 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 381 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 382 | <artifactId>hyracks-storage-am-invertedindex</artifactId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 383 | <version>${hyracks.version}</version> |
| 384 | </dependency> |
| 385 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 386 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 387 | <artifactId>hyracks-storage-am-common</artifactId> |
| 388 | <version>${hyracks.version}</version> |
| 389 | </dependency> |
| 390 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 391 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 392 | <artifactId>hyracks-client</artifactId> |
| 393 | <version>${hyracks.version}</version> |
| 394 | </dependency> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 395 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 396 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 397 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 398 | <version>${hyracks.version}</version> |
| 399 | </dependency> |
| 400 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 401 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 402 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 403 | <version>${hyracks.version}</version> |
| 404 | </dependency> |
| 405 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 406 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 407 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 408 | <version>${hyracks.version}</version> |
| 409 | </dependency> |
| 410 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 411 | <groupId>org.apache.hyracks</groupId> |
Eldon Carman | 0228b9c | 2014-11-25 18:13:46 -0800 | [diff] [blame] | 412 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 413 | <version>${hyracks.version}</version> |
| 414 | </dependency> |
| 415 | <dependency> |
| 416 | <groupId>org.json</groupId> |
| 417 | <artifactId>json</artifactId> |
| 418 | <version>${json.version}</version> |
| 419 | <type>jar</type> |
| 420 | </dependency> |
| 421 | <dependency> |
| 422 | <groupId>javax.servlet</groupId> |
| 423 | <artifactId>servlet-api</artifactId> |
| 424 | <version>${servlet.api.version}</version> |
| 425 | <type>jar</type> |
| 426 | </dependency> |
| 427 | <dependency> |
| 428 | <groupId>commons-io</groupId> |
| 429 | <artifactId>commons-io</artifactId> |
| 430 | <version>${commons.io.version}</version> |
| 431 | </dependency> |
| 432 | </dependencies> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 433 | </dependencyManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 434 | </project> |