blob: 385182ba315f39dd945d896859d7f3f92d38c084 [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
Till Westmann276bbc22013-06-05 18:56:27 -07002<!--
3 ! Copyright 2009-2013 by The Regents of the University of California
4 ! Licensed under the Apache License, Version 2.0 (the "License");
5 ! you may not use this file except in compliance with the License.
6 ! you may obtain a copy of the License from
7 !
8 ! http://www.apache.org/licenses/LICENSE-2.0
9 !
10 ! Unless required by applicable law or agreed to in writing, software
11 ! distributed under the License is distributed on an "AS IS" BASIS,
12 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ! See the License for the specific language governing permissions and
14 ! limitations under the License.
15 !-->
vinayakb1ca34f42013-03-25 03:17:01 +000016<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 +000017 <modelVersion>4.0.0</modelVersion>
Ianeee859a2014-09-21 18:26:49 -070018 <artifactId>hyracks-hdfs-1.x</artifactId>
19 <name>hyracks-hdfs-1.x</name>
buyingyi55df5212013-03-24 07:20:08 +000020 <parent>
21 <artifactId>hyracks-hdfs</artifactId>
22 <groupId>edu.uci.ics.hyracks</groupId>
Ian Maxon0c62ede2015-02-17 20:47:14 -080023 <version>0.2.15</version>
buyingyi55df5212013-03-24 07:20:08 +000024 </parent>
25
26 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-compiler-plugin</artifactId>
31 <version>2.0.2</version>
32 <configuration>
33 <source>1.7</source>
34 <target>1.7</target>
35 <fork>true</fork>
36 </configuration>
37 </plugin>
buyingyi55df5212013-03-24 07:20:08 +000038 </plugins>
39 </build>
40
41 <profiles>
42 <profile>
43 <activation>
44 <activeByDefault>true</activeByDefault>
45 </activation>
46 <id>hadoop-0.20.2</id>
47 <dependencies>
48 <dependency>
49 <groupId>org.apache.hadoop</groupId>
50 <artifactId>hadoop-core</artifactId>
51 <version>0.20.2</version>
52 <type>jar</type>
53 <scope>compile</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.hadoop</groupId>
57 <artifactId>hadoop-test</artifactId>
58 <version>0.20.2</version>
59 <type>jar</type>
60 <scope>compile</scope>
61 </dependency>
62 </dependencies>
63 </profile>
64 <profile>
65 <activation>
66 <activeByDefault>false</activeByDefault>
67 <property>
68 <name>hadoop</name>
69 <value>1.0.4</value>
70 </property>
71 </activation>
72 <id>hadoop-1.0.4</id>
73 <dependencies>
74 <dependency>
75 <groupId>org.apache.hadoop</groupId>
76 <artifactId>hadoop-core</artifactId>
77 <version>1.0.4</version>
78 <type>jar</type>
79 <scope>compile</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.apache.hadoop</groupId>
83 <artifactId>hadoop-minicluster</artifactId>
84 <version>1.0.4</version>
85 <type>jar</type>
86 <scope>compile</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.apache.hadoop</groupId>
90 <artifactId>hadoop-test</artifactId>
91 <version>1.0.4</version>
92 <type>jar</type>
93 <scope>compile</scope>
94 </dependency>
95 </dependencies>
96 </profile>
97 </profiles>
98
99 <dependencies>
100 <dependency>
101 <groupId>edu.uci.ics.hyracks</groupId>
102 <artifactId>hyracks-api</artifactId>
Ian Maxon0c62ede2015-02-17 20:47:14 -0800103 <version>0.2.15</version>
buyingyi55df5212013-03-24 07:20:08 +0000104 <type>jar</type>
105 <scope>compile</scope>
106 </dependency>
107 </dependencies>
108</project>