blob: ec97239d651aabda1be64bc13bdb56a3fa404f35 [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
ramangrover293b221712013-08-01 11:16:42 -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. ! -->
vinayakb1ca34f42013-03-25 03:17:01 +000011<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">
buyingyi55df5212013-03-24 07:20:08 +000012 <modelVersion>4.0.0</modelVersion>
13 <artifactId>hivesterix-common</artifactId>
14 <name>hivesterix-common</name>
15
16 <parent>
17 <artifactId>hivesterix</artifactId>
18 <groupId>edu.uci.ics.hyracks</groupId>
Ian Maxon1f30d4e2014-09-19 15:58:43 -070019 <version>0.2.13</version>
buyingyi55df5212013-03-24 07:20:08 +000020 </parent>
21
22 <build>
23 <plugins>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-compiler-plugin</artifactId>
27 <version>2.0.2</version>
28 <configuration>
29 <source>1.7</source>
30 <target>1.7</target>
31 <encoding>UTF-8</encoding>
32 <fork>true</fork>
33 </configuration>
34 </plugin>
35 </plugins>
36 </build>
37
38 <dependencies>
39 <dependency>
40 <groupId>edu.uci.ics.hyracks</groupId>
41 <artifactId>hyracks-api</artifactId>
Ian Maxon1f30d4e2014-09-19 15:58:43 -070042 <version>0.2.13</version>
buyingyi55df5212013-03-24 07:20:08 +000043 <type>jar</type>
44 <scope>compile</scope>
45 </dependency>
46 <dependency>
47 <groupId>edu.uci.ics.hyracks</groupId>
48 <artifactId>algebricks-compiler</artifactId>
Ian Maxon1f30d4e2014-09-19 15:58:43 -070049 <version>0.2.13</version>
buyingyi55df5212013-03-24 07:20:08 +000050 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>edu.uci.ics.hyracks</groupId>
55 <artifactId>hyracks-hdfs-core</artifactId>
Ian Maxon1f30d4e2014-09-19 15:58:43 -070056 <version>0.2.13</version>
buyingyi55df5212013-03-24 07:20:08 +000057 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
60 <dependency>
ramangrover293b221712013-08-01 11:16:42 -070061 <groupId>org.apache.hive</groupId>
buyingyi55df5212013-03-24 07:20:08 +000062 <artifactId>hive-exec</artifactId>
ramangrover293b221712013-08-01 11:16:42 -070063 <version>0.11.0</version>
64 <type>jar</type>
65 <scope>compile</scope>
66 </dependency>
67 <dependency>
68 <groupId>edu.uci.ics.hyracks</groupId>
69 <artifactId>hivesterix-serde</artifactId>
Ian Maxon1f30d4e2014-09-19 15:58:43 -070070 <version>0.2.13</version>
buyingyi55df5212013-03-24 07:20:08 +000071 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74 </dependencies>
ramangrover293b221712013-08-01 11:16:42 -070075
76 <repositories>
77 <repository>
78 <releases>
79 <enabled>true</enabled>
80 <updatePolicy>always</updatePolicy>
81 <checksumPolicy>warn</checksumPolicy>
82 </releases>
83 <snapshots>
84 <enabled>true</enabled>
85 <updatePolicy>always</updatePolicy>
86 <checksumPolicy>fail</checksumPolicy>
87 </snapshots>
88 <id>cdh-build</id>
89 <url>https://repository.cloudera.com/content/groups/cdh-build</url>
90 </repository>
91 </repositories>
buyingyi55df5212013-03-24 07:20:08 +000092</project>