vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 1 | <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"> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <groupId>edu.uci.ics.hyracks</groupId> |
| 4 | <artifactId>hivesterix-dist</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame^] | 5 | <version>0.2.6-SNAPSHOT</version> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 6 | <name>hivesterix-dist</name> |
| 7 | |
| 8 | <parent> |
| 9 | <groupId>edu.uci.ics.hyracks</groupId> |
| 10 | <artifactId>hivesterix</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame^] | 11 | <version>0.2.6-SNAPSHOT</version> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 12 | </parent> |
| 13 | |
| 14 | <dependencies> |
| 15 | <dependency> |
| 16 | <groupId>javax.servlet</groupId> |
| 17 | <artifactId>servlet-api</artifactId> |
| 18 | <version>2.5</version> |
| 19 | <type>jar</type> |
| 20 | <scope>compile</scope> |
| 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>junit</groupId> |
| 24 | <artifactId>junit</artifactId> |
| 25 | <version>4.8.1</version> |
| 26 | <scope>compile</scope> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>args4j</groupId> |
| 30 | <artifactId>args4j</artifactId> |
| 31 | <version>2.0.12</version> |
| 32 | <type>jar</type> |
| 33 | <scope>compile</scope> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>org.json</groupId> |
| 37 | <artifactId>json</artifactId> |
| 38 | <version>20090211</version> |
| 39 | <type>jar</type> |
| 40 | <scope>compile</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.eclipse.jetty</groupId> |
| 44 | <artifactId>jetty-server</artifactId> |
| 45 | <version>8.0.0.M1</version> |
| 46 | <type>jar</type> |
| 47 | <scope>compile</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.eclipse.jetty</groupId> |
| 51 | <artifactId>jetty-servlet</artifactId> |
| 52 | <version>8.0.0.M1</version> |
| 53 | <type>jar</type> |
| 54 | <scope>compile</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>jline</groupId> |
| 58 | <artifactId>jline</artifactId> |
| 59 | <version>0.9.94</version> |
| 60 | <type>jar</type> |
| 61 | <scope>compile</scope> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.datanucleus</groupId> |
| 65 | <artifactId>datanucleus-core</artifactId> |
| 66 | <version>2.0.3</version> |
| 67 | <type>jar</type> |
| 68 | <scope>compile</scope> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.datanucleus</groupId> |
| 72 | <artifactId>datanucleus-connectionpool</artifactId> |
| 73 | <version>2.0.3</version> |
| 74 | <type>jar</type> |
| 75 | <scope>compile</scope> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.datanucleus</groupId> |
| 79 | <artifactId>datanucleus-enhancer</artifactId> |
| 80 | <version>2.0.3</version> |
| 81 | <type>jar</type> |
| 82 | <scope>compile</scope> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.datanucleus</groupId> |
| 86 | <artifactId>datanucleus-rdbms</artifactId> |
| 87 | <version>2.0.3</version> |
| 88 | <type>jar</type> |
| 89 | <scope>compile</scope> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>commons-dbcp</groupId> |
| 93 | <artifactId>commons-dbcp</artifactId> |
| 94 | <version>1.4</version> |
| 95 | <type>jar</type> |
| 96 | <scope>compile</scope> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>commons-pool</groupId> |
| 100 | <artifactId>commons-pool</artifactId> |
| 101 | <version>1.5.4</version> |
| 102 | <type>jar</type> |
| 103 | <scope>compile</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>commons-collections</groupId> |
| 107 | <artifactId>commons-collections</artifactId> |
| 108 | <version>3.2.1</version> |
| 109 | <type>jar</type> |
| 110 | <scope>compile</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>commons-lang</groupId> |
| 114 | <artifactId>commons-lang</artifactId> |
| 115 | <version>2.4</version> |
| 116 | <type>jar</type> |
| 117 | <scope>compile</scope> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>javax</groupId> |
| 121 | <artifactId>jdo2-api</artifactId> |
| 122 | <version>2.3-ec</version> |
| 123 | <scope>compile</scope> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>com.facebook</groupId> |
| 127 | <artifactId>libfb303</artifactId> |
| 128 | <version>0.5.0</version> |
| 129 | <scope>compile</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.apache.thrift</groupId> |
| 133 | <artifactId>libthrift</artifactId> |
| 134 | <version>0.5.0</version> |
| 135 | <scope>compile</scope> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>org.apache.commons</groupId> |
| 139 | <artifactId>cli</artifactId> |
| 140 | <version>1.2</version> |
| 141 | <scope>compile</scope> |
| 142 | </dependency> |
| 143 | <dependency> |
| 144 | <groupId>org.apache</groupId> |
| 145 | <artifactId>log4j</artifactId> |
| 146 | <version>1.2.15</version> |
| 147 | <type>jar</type> |
| 148 | <scope>compile</scope> |
| 149 | </dependency> |
| 150 | <dependency> |
| 151 | <groupId>org.antlr</groupId> |
| 152 | <artifactId>antlr-runtime</artifactId> |
| 153 | <version>3.0.1</version> |
| 154 | <scope>compile</scope> |
| 155 | </dependency> |
| 156 | <dependency> |
| 157 | <groupId>org.apache.hadoop.hive</groupId> |
| 158 | <artifactId>hive-cli</artifactId> |
| 159 | <version>0.7.0</version> |
| 160 | <type>jar</type> |
| 161 | <scope>compile</scope> |
| 162 | </dependency> |
| 163 | <dependency> |
| 164 | <groupId>org.apache.hadoop.hive</groupId> |
| 165 | <artifactId>hive-common</artifactId> |
| 166 | <version>0.7.0</version> |
| 167 | <type>jar</type> |
| 168 | <scope>compile</scope> |
| 169 | </dependency> |
| 170 | <dependency> |
| 171 | <groupId>org.apache.hadoop.hive</groupId> |
| 172 | <artifactId>hive-exec</artifactId> |
| 173 | <version>0.7.0</version> |
| 174 | <type>jar</type> |
| 175 | <scope>compile</scope> |
| 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>org.apache.hadoop.hive</groupId> |
| 179 | <artifactId>hive-hwi</artifactId> |
| 180 | <version>0.7.0</version> |
| 181 | <type>jar</type> |
| 182 | <scope>compile</scope> |
| 183 | </dependency> |
| 184 | <dependency> |
| 185 | <groupId>org.apache.hadoop.hive</groupId> |
| 186 | <artifactId>hive-jdbc</artifactId> |
| 187 | <version>0.7.0</version> |
| 188 | <type>jar</type> |
| 189 | <scope>compile</scope> |
| 190 | </dependency> |
| 191 | <dependency> |
| 192 | <groupId>org.apache.hadoop.hive</groupId> |
| 193 | <artifactId>hive-metastore</artifactId> |
| 194 | <version>0.7.0</version> |
| 195 | <type>jar</type> |
| 196 | <scope>compile</scope> |
| 197 | </dependency> |
| 198 | <dependency> |
| 199 | <groupId>org.apache.hadoop.hive</groupId> |
| 200 | <artifactId>hive-service</artifactId> |
| 201 | <version>0.7.0</version> |
| 202 | <type>jar</type> |
| 203 | <scope>compile</scope> |
| 204 | </dependency> |
| 205 | <dependency> |
| 206 | <groupId>org.apache.hadoop.hive</groupId> |
| 207 | <artifactId>hive-shims</artifactId> |
| 208 | <version>0.7.0</version> |
| 209 | <type>jar</type> |
| 210 | <scope>compile</scope> |
| 211 | </dependency> |
| 212 | <dependency> |
| 213 | <groupId>org.apache.hadoop.hive</groupId> |
| 214 | <artifactId>hive-serde</artifactId> |
| 215 | <version>0.7.0</version> |
| 216 | <type>jar</type> |
| 217 | <scope>compile</scope> |
| 218 | </dependency> |
| 219 | <dependency> |
| 220 | <groupId>org.slf4j</groupId> |
| 221 | <artifactId>slf4j-api</artifactId> |
| 222 | <version>1.6.1</version> |
| 223 | <type>jar</type> |
| 224 | <scope>compile</scope> |
| 225 | </dependency> |
| 226 | <dependency> |
| 227 | <groupId>commons-cli</groupId> |
| 228 | <artifactId>commons-cli</artifactId> |
| 229 | <version>1.2</version> |
| 230 | <type>jar</type> |
| 231 | <scope>compile</scope> |
| 232 | </dependency> |
| 233 | <dependency> |
| 234 | <groupId>org.slf4j</groupId> |
| 235 | <artifactId>slf4j-log4j12</artifactId> |
| 236 | <version>1.6.1</version> |
| 237 | <type>jar</type> |
| 238 | <scope>compile</scope> |
| 239 | </dependency> |
| 240 | <dependency> |
| 241 | <groupId>commons-logging</groupId> |
| 242 | <artifactId>commons-logging</artifactId> |
| 243 | <version>1.1.1</version> |
| 244 | <type>jar</type> |
| 245 | <classifier>api</classifier> |
| 246 | <scope>compile</scope> |
| 247 | </dependency> |
| 248 | <dependency> |
| 249 | <groupId>com.google.guava</groupId> |
| 250 | <artifactId>guava</artifactId> |
| 251 | <version>r06</version> |
| 252 | <type>jar</type> |
| 253 | <scope>compile</scope> |
| 254 | </dependency> |
| 255 | <dependency> |
| 256 | <groupId>org.antlr</groupId> |
| 257 | <artifactId>stringtemplate</artifactId> |
| 258 | <version>3.2</version> |
| 259 | <type>jar</type> |
| 260 | <scope>compile</scope> |
| 261 | </dependency> |
| 262 | <dependency> |
| 263 | <groupId>org.apache.derby</groupId> |
| 264 | <artifactId>derby</artifactId> |
| 265 | <version>10.8.1.2</version> |
| 266 | <type>jar</type> |
| 267 | <scope>compile</scope> |
| 268 | </dependency> |
| 269 | <dependency> |
| 270 | <groupId>org.apache.hadoop</groupId> |
| 271 | <artifactId>hadoop-core</artifactId> |
| 272 | <version>0.20.2</version> |
| 273 | <type>jar</type> |
| 274 | <scope>compile</scope> |
| 275 | </dependency> |
| 276 | <dependency> |
| 277 | <groupId>edu.uci.ics.hyracks</groupId> |
| 278 | <artifactId>hivesterix-translator</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame^] | 279 | <version>0.2.6-SNAPSHOT</version> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 280 | <type>jar</type> |
| 281 | <scope>compile</scope> |
| 282 | </dependency> |
| 283 | <dependency> |
| 284 | <groupId>edu.uci.ics.hyracks</groupId> |
| 285 | <artifactId>hivesterix-optimizer</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame^] | 286 | <version>0.2.6-SNAPSHOT</version> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 287 | <type>jar</type> |
| 288 | <scope>compile</scope> |
| 289 | </dependency> |
| 290 | <dependency> |
| 291 | <groupId>org.apache.hbase</groupId> |
| 292 | <artifactId>hbase</artifactId> |
| 293 | <version>0.90.3</version> |
| 294 | <type>jar</type> |
| 295 | <scope>compile</scope> |
| 296 | </dependency> |
| 297 | <dependency> |
| 298 | <groupId>edu.uci.ics.hyracks</groupId> |
| 299 | <artifactId>algebricks-compiler</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame^] | 300 | <version>0.2.6-SNAPSHOT</version> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 301 | <type>jar</type> |
| 302 | <scope>compile</scope> |
| 303 | </dependency> |
| 304 | <dependency> |
| 305 | <groupId>edu.uci.ics.hyracks</groupId> |
| 306 | <artifactId>hyracks-control-cc</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame^] | 307 | <version>0.2.6-SNAPSHOT</version> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 308 | <type>jar</type> |
| 309 | <scope>compile</scope> |
| 310 | </dependency> |
| 311 | <dependency> |
| 312 | <groupId>edu.uci.ics.hyracks</groupId> |
| 313 | <artifactId>hyracks-control-nc</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame^] | 314 | <version>0.2.6-SNAPSHOT</version> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 315 | <type>jar</type> |
| 316 | <scope>compile</scope> |
| 317 | </dependency> |
| 318 | </dependencies> |
| 319 | <build> |
| 320 | <plugins> |
| 321 | <plugin> |
| 322 | <groupId>org.apache.maven.plugins</groupId> |
| 323 | <artifactId>maven-compiler-plugin</artifactId> |
| 324 | <version>2.0.2</version> |
| 325 | <configuration> |
| 326 | <source>1.7</source> |
| 327 | <target>1.7</target> |
| 328 | <encoding>UTF-8</encoding> |
| 329 | <fork>true</fork> |
| 330 | </configuration> |
| 331 | </plugin> |
| 332 | <plugin> |
| 333 | <artifactId>maven-jar-plugin</artifactId> |
| 334 | <executions> |
| 335 | <execution> |
| 336 | <id>patch</id> |
| 337 | <goals> |
| 338 | <goal>jar</goal> |
| 339 | </goals> |
| 340 | <phase>package</phase> |
| 341 | <configuration> |
| 342 | <classifier>patch</classifier> |
| 343 | <finalName>a-hive</finalName> |
| 344 | <includes> |
| 345 | <include>**/org/apache/**</include> |
| 346 | </includes> |
| 347 | </configuration> |
| 348 | </execution> |
| 349 | </executions> |
| 350 | </plugin> |
| 351 | <plugin> |
| 352 | <groupId>org.codehaus.mojo</groupId> |
| 353 | <artifactId>appassembler-maven-plugin</artifactId> |
| 354 | <version>1.3</version> |
| 355 | <executions> |
| 356 | <execution> |
| 357 | <configuration> |
| 358 | <programs> |
| 359 | <program> |
| 360 | <mainClass>edu.uci.ics.asterix.hive.cli.CliDriver</mainClass> |
| 361 | <name>algebricks-hivesterix-cmd</name> |
| 362 | </program> |
| 363 | </programs> |
| 364 | <repositoryLayout>flat</repositoryLayout> |
| 365 | <repositoryName>lib</repositoryName> |
| 366 | </configuration> |
| 367 | <phase>package</phase> |
| 368 | <goals> |
| 369 | <goal>assemble</goal> |
| 370 | </goals> |
| 371 | </execution> |
| 372 | </executions> |
| 373 | </plugin> |
| 374 | <plugin> |
| 375 | <artifactId>maven-assembly-plugin</artifactId> |
| 376 | <version>2.2-beta-5</version> |
| 377 | <executions> |
| 378 | <execution> |
| 379 | <configuration> |
| 380 | <descriptors> |
| 381 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 382 | </descriptors> |
| 383 | </configuration> |
| 384 | <phase>package</phase> |
| 385 | <goals> |
| 386 | <goal>attached</goal> |
| 387 | </goals> |
| 388 | </execution> |
| 389 | </executions> |
| 390 | </plugin> |
| 391 | <plugin> |
| 392 | <groupId>org.apache.maven.plugins</groupId> |
| 393 | <artifactId>maven-surefire-plugin</artifactId> |
| 394 | <version>2.13</version> |
| 395 | <configuration> |
| 396 | <forkMode>pertest</forkMode> |
| 397 | <argLine>-enableassertions -Xmx2047m -Dfile.encoding=UTF-8 |
| 398 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 399 | <includes> |
| 400 | <include>**/test/optimizer/*TestSuite.java</include> |
| 401 | <include>**/test/optimizer/*Test.java</include> |
| 402 | <include>**/test/runtimefunction/*TestSuite.java</include> |
| 403 | <include>**/test/runtimefunction/*Test.java</include> |
| 404 | </includes> |
| 405 | </configuration> |
| 406 | </plugin> |
| 407 | <plugin> |
| 408 | <artifactId>maven-resources-plugin</artifactId> |
| 409 | <version>2.5</version> |
| 410 | <executions> |
| 411 | <execution> |
| 412 | <id>copy-scripts</id> |
| 413 | <!-- here the phase you need --> |
| 414 | <phase>package</phase> |
| 415 | <goals> |
| 416 | <goal>copy-resources</goal> |
| 417 | </goals> |
| 418 | <configuration> |
| 419 | <outputDirectory>target/appassembler/bin</outputDirectory> |
| 420 | <resources> |
| 421 | <resource> |
| 422 | <directory>src/main/resources/scripts</directory> |
| 423 | </resource> |
| 424 | </resources> |
| 425 | </configuration> |
| 426 | </execution> |
| 427 | <execution> |
| 428 | <id>copy-conf</id> |
| 429 | <!-- here the phase you need --> |
| 430 | <phase>package</phase> |
| 431 | <goals> |
| 432 | <goal>copy-resources</goal> |
| 433 | </goals> |
| 434 | <configuration> |
| 435 | <outputDirectory>target/appassembler/conf</outputDirectory> |
| 436 | <resources> |
| 437 | <resource> |
| 438 | <directory>src/main/resources/conf</directory> |
| 439 | </resource> |
| 440 | </resources> |
| 441 | </configuration> |
| 442 | </execution> |
| 443 | <execution> |
| 444 | <id>copy-jar</id> |
| 445 | <!-- here the phase you need --> |
| 446 | <phase>package</phase> |
| 447 | <goals> |
| 448 | <goal>copy-resources</goal> |
| 449 | </goals> |
| 450 | <configuration> |
| 451 | <outputDirectory>target/appassembler/lib</outputDirectory> |
| 452 | <resources> |
| 453 | <resource> |
| 454 | <directory>target</directory> |
| 455 | <includes> |
| 456 | <include>*patch.jar</include> |
| 457 | </includes> |
| 458 | </resource> |
| 459 | </resources> |
| 460 | </configuration> |
| 461 | </execution> |
| 462 | </executions> |
| 463 | </plugin> |
| 464 | <plugin> |
| 465 | <artifactId>maven-clean-plugin</artifactId> |
| 466 | <version>2.5</version> |
| 467 | <configuration> |
| 468 | <filesets> |
| 469 | <fileset> |
| 470 | <directory>.</directory> |
| 471 | <includes> |
| 472 | <include>metastore*</include> |
| 473 | <include>hadoop*</include> |
| 474 | <include>edu*</include> |
| 475 | <include>tmp*</include> |
| 476 | <include>build*</include> |
| 477 | <include>target*</include> |
| 478 | <include>log*</include> |
| 479 | <include>derby.log</include> |
| 480 | <include>ClusterController*</include> |
| 481 | </includes> |
| 482 | </fileset> |
| 483 | </filesets> |
| 484 | </configuration> |
| 485 | </plugin> |
| 486 | </plugins> |
| 487 | </build> |
| 488 | <repositories> |
| 489 | <repository> |
| 490 | <releases> |
| 491 | <enabled>true</enabled> |
| 492 | <updatePolicy>always</updatePolicy> |
| 493 | <checksumPolicy>warn</checksumPolicy> |
| 494 | </releases> |
| 495 | <snapshots> |
| 496 | <enabled>true</enabled> |
| 497 | <updatePolicy>always</updatePolicy> |
| 498 | <checksumPolicy>fail</checksumPolicy> |
| 499 | </snapshots> |
| 500 | <id>third-party</id> |
| 501 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party</url> |
| 502 | </repository> |
| 503 | <repository> |
| 504 | <releases> |
| 505 | <enabled>true</enabled> |
| 506 | <updatePolicy>always</updatePolicy> |
| 507 | <checksumPolicy>warn</checksumPolicy> |
| 508 | </releases> |
| 509 | <snapshots> |
| 510 | <enabled>true</enabled> |
| 511 | <updatePolicy>always</updatePolicy> |
| 512 | <checksumPolicy>fail</checksumPolicy> |
| 513 | </snapshots> |
| 514 | <id>hyracks-public-release</id> |
| 515 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-public-releases</url> |
| 516 | </repository> |
| 517 | </repositories> |
| 518 | </project> |