blob: 79fa05b67c1e0c6d44149cb5d77e8498cbe192d8 [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. ! -->
buyingyi7833f6d2013-07-14 20:37:04 -070011<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>
buyingyi8210a972013-07-14 20:37:18 -070019 <version>0.2.8-SNAPSHOT</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>
buyingyi8210a972013-07-14 20:37:18 -070042 <version>0.2.8-SNAPSHOT</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>
buyingyi8210a972013-07-14 20:37:18 -070049 <version>0.2.8-SNAPSHOT</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>
buyingyi8210a972013-07-14 20:37:18 -070056 <version>0.2.8-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000057 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
60 <dependency>
buyingyi3ed00442013-07-09 23:46:43 -070061 <groupId>org.apache.hive</groupId>
buyingyi55df5212013-03-24 07:20:08 +000062 <artifactId>hive-exec</artifactId>
buyingyi3ed00442013-07-09 23:46:43 -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>
buyingyi8210a972013-07-14 20:37:18 -070070 <version>0.2.8-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000071 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74 </dependencies>
buyingyifaecfa62013-07-12 12:17:50 -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>