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