blob: 0ff2d961726fa8e8647a782019540fa23a6ec96d [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
buyingyifaecfa62013-07-12 12:17:50 -07002<!-- ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
4 not use this file except in compliance with the License. ! you may obtain
5 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
6 ! ! Unless required by applicable law or agreed to in writing, software !
7 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
8 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
9 License for the specific language governing permissions and ! limitations
10 under the License. ! -->
11<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
buyingyi55df5212013-03-24 07:20:08 +000013 <modelVersion>4.0.0</modelVersion>
14 <artifactId>hivesterix-common</artifactId>
15 <name>hivesterix-common</name>
16
17 <parent>
18 <artifactId>hivesterix</artifactId>
19 <groupId>edu.uci.ics.hyracks</groupId>
Vinayak Borkar706863b2013-06-05 23:16:52 -070020 <version>0.2.7-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000021 </parent>
22
23 <build>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-compiler-plugin</artifactId>
28 <version>2.0.2</version>
29 <configuration>
30 <source>1.7</source>
31 <target>1.7</target>
32 <encoding>UTF-8</encoding>
33 <fork>true</fork>
34 </configuration>
35 </plugin>
36 </plugins>
37 </build>
38
39 <dependencies>
40 <dependency>
41 <groupId>edu.uci.ics.hyracks</groupId>
42 <artifactId>hyracks-api</artifactId>
Vinayak Borkar706863b2013-06-05 23:16:52 -070043 <version>0.2.7-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000044 <type>jar</type>
45 <scope>compile</scope>
46 </dependency>
47 <dependency>
48 <groupId>edu.uci.ics.hyracks</groupId>
49 <artifactId>algebricks-compiler</artifactId>
Vinayak Borkar706863b2013-06-05 23:16:52 -070050 <version>0.2.7-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000051 <type>jar</type>
52 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>edu.uci.ics.hyracks</groupId>
56 <artifactId>hyracks-hdfs-core</artifactId>
Vinayak Borkar706863b2013-06-05 23:16:52 -070057 <version>0.2.7-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000058 <type>jar</type>
59 <scope>compile</scope>
60 </dependency>
61 <dependency>
buyingyi3ed00442013-07-09 23:46:43 -070062 <groupId>org.apache.hive</groupId>
buyingyi55df5212013-03-24 07:20:08 +000063 <artifactId>hive-exec</artifactId>
buyingyi3ed00442013-07-09 23:46:43 -070064 <version>0.11.0</version>
65 <type>jar</type>
66 <scope>compile</scope>
67 </dependency>
68 <dependency>
69 <groupId>edu.uci.ics.hyracks</groupId>
70 <artifactId>hivesterix-serde</artifactId>
71 <version>0.2.7-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000072 <type>jar</type>
73 <scope>compile</scope>
74 </dependency>
75 </dependencies>
buyingyifaecfa62013-07-12 12:17:50 -070076
77 <repositories>
78 <repository>
79 <releases>
80 <enabled>true</enabled>
81 <updatePolicy>always</updatePolicy>
82 <checksumPolicy>warn</checksumPolicy>
83 </releases>
84 <snapshots>
85 <enabled>true</enabled>
86 <updatePolicy>always</updatePolicy>
87 <checksumPolicy>fail</checksumPolicy>
88 </snapshots>
89 <id>cdh-build</id>
90 <url>https://repository.cloudera.com/content/groups/cdh-build</url>
91 </repository>
92 </repositories>
buyingyi55df5212013-03-24 07:20:08 +000093</project>