blob: 3ba806e2dbd7605be745658200cfcab7bd95f289 [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>
30
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-compiler-plugin</artifactId>
36 <version>2.0.2</version>
37 <configuration>
38 <source>1.7</source>
39 <target>1.7</target>
40 <fork>true</fork>
41 </configuration>
42 </plugin>
buyingyi55df5212013-03-24 07:20:08 +000043 </plugins>
44 </build>
45
46 <profiles>
47 <profile>
48 <activation>
49 <activeByDefault>true</activeByDefault>
50 </activation>
51 <id>hadoop-0.20.2</id>
52 <dependencies>
53 <dependency>
54 <groupId>org.apache.hadoop</groupId>
55 <artifactId>hadoop-core</artifactId>
56 <version>0.20.2</version>
57 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.apache.hadoop</groupId>
62 <artifactId>hadoop-test</artifactId>
63 <version>0.20.2</version>
64 <type>jar</type>
65 <scope>compile</scope>
66 </dependency>
67 </dependencies>
68 </profile>
69 <profile>
70 <activation>
71 <activeByDefault>false</activeByDefault>
72 <property>
73 <name>hadoop</name>
74 <value>1.0.4</value>
75 </property>
76 </activation>
77 <id>hadoop-1.0.4</id>
78 <dependencies>
79 <dependency>
80 <groupId>org.apache.hadoop</groupId>
81 <artifactId>hadoop-core</artifactId>
82 <version>1.0.4</version>
83 <type>jar</type>
84 <scope>compile</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.hadoop</groupId>
88 <artifactId>hadoop-minicluster</artifactId>
89 <version>1.0.4</version>
90 <type>jar</type>
91 <scope>compile</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.apache.hadoop</groupId>
95 <artifactId>hadoop-test</artifactId>
96 <version>1.0.4</version>
97 <type>jar</type>
98 <scope>compile</scope>
99 </dependency>
100 </dependencies>
101 </profile>
102 </profiles>
103
104 <dependencies>
105 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700106 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000107 <artifactId>hyracks-api</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700108 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000109 <type>jar</type>
110 <scope>compile</scope>
111 </dependency>
112 </dependencies>
113</project>