blob: eb813881130ac2856a6516da632f8801ba68bef9 [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
Till Westmann276bbc22013-06-05 18:56:27 -07002<!--
Ian Maxond8857792015-09-11 14:19:53 -07003 ! Licensed to the Apache Software Foundation (ASF) under one
4 ! or more contributor license agreements. See the NOTICE file
5 ! distributed with this work for additional information
6 ! regarding copyright ownership. The ASF licenses this file
7 ! to you under the Apache License, Version 2.0 (the
8 ! "License"); you may not use this file except in compliance
9 ! with the License. You may obtain a copy of the License at
10 !
11 ! http://www.apache.org/licenses/LICENSE-2.0
12 !
13 ! Unless required by applicable law or agreed to in writing,
14 ! software distributed under the License is distributed on an
15 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ! KIND, either express or implied. See the License for the
17 ! specific language governing permissions and limitations
18 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070019 !-->
Ian Maxond8857792015-09-11 14:19:53 -070020
vinayakb1ca34f42013-03-25 03:17:01 +000021<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 +000022 <modelVersion>4.0.0</modelVersion>
Ianeee859a2014-09-21 18:26:49 -070023 <artifactId>hyracks-hdfs-1.x</artifactId>
24 <name>hyracks-hdfs-1.x</name>
buyingyi55df5212013-03-24 07:20:08 +000025 <parent>
26 <artifactId>hyracks-hdfs</artifactId>
Ian Maxone915e8c2015-07-01 17:03:31 -070027 <groupId>org.apache.hyracks</groupId>
Ian Maxond4daeb42015-09-15 14:31:32 -070028 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000029 </parent>
Ian Maxon9e37c962015-11-25 07:38:37 -080030 <properties>
31 <root.dir>${basedir}/../../..</root.dir>
32 </properties>
buyingyi55df5212013-03-24 07:20:08 +000033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
38 <version>2.0.2</version>
39 <configuration>
40 <source>1.7</source>
41 <target>1.7</target>
42 <fork>true</fork>
43 </configuration>
44 </plugin>
buyingyi55df5212013-03-24 07:20:08 +000045 </plugins>
46 </build>
47
48 <profiles>
49 <profile>
50 <activation>
51 <activeByDefault>true</activeByDefault>
52 </activation>
53 <id>hadoop-0.20.2</id>
54 <dependencies>
55 <dependency>
56 <groupId>org.apache.hadoop</groupId>
57 <artifactId>hadoop-core</artifactId>
58 <version>0.20.2</version>
59 <type>jar</type>
60 <scope>compile</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.hadoop</groupId>
64 <artifactId>hadoop-test</artifactId>
65 <version>0.20.2</version>
66 <type>jar</type>
67 <scope>compile</scope>
68 </dependency>
69 </dependencies>
70 </profile>
71 <profile>
72 <activation>
73 <activeByDefault>false</activeByDefault>
74 <property>
75 <name>hadoop</name>
76 <value>1.0.4</value>
77 </property>
78 </activation>
79 <id>hadoop-1.0.4</id>
80 <dependencies>
81 <dependency>
82 <groupId>org.apache.hadoop</groupId>
83 <artifactId>hadoop-core</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-minicluster</artifactId>
91 <version>1.0.4</version>
92 <type>jar</type>
93 <scope>compile</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.apache.hadoop</groupId>
97 <artifactId>hadoop-test</artifactId>
98 <version>1.0.4</version>
99 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
102 </dependencies>
103 </profile>
104 </profiles>
105
106 <dependencies>
107 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700108 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000109 <artifactId>hyracks-api</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700110 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000111 <type>jar</type>
112 <scope>compile</scope>
113 </dependency>
114 </dependencies>
115</project>