blob: 33afd8f9468124d84782d759f482c65868575bc4 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070018 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
vinayakb1ca34f42013-03-25 03:17:01 +000020<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">
Michael Blowb4c1fb02016-05-09 15:41:00 -070021 <modelVersion>4.0.0</modelVersion>
22 <artifactId>hyracks-hdfs-1.x</artifactId>
23 <name>hyracks-hdfs-1.x</name>
24 <parent>
25 <artifactId>hyracks-hdfs</artifactId>
26 <groupId>org.apache.hyracks</groupId>
Ian Maxon7c9a47a2017-01-18 12:17:08 -080027 <version>0.3.0</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 </parent>
29 <properties>
30 <root.dir>${basedir}/../../..</root.dir>
31 </properties>
buyingyi55df5212013-03-24 07:20:08 +000032
Michael Blow5ab717c2016-10-05 11:53:37 -040033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-jar-plugin</artifactId>
38 <version>2.4</version>
39 <executions>
40 <execution>
41 <goals>
42 <goal>test-jar</goal>
43 </goals>
44 </execution>
45 </executions>
46 </plugin>
47 </plugins>
48 </build>
49
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 <profiles>
51 <profile>
52 <activation>
53 <activeByDefault>true</activeByDefault>
54 </activation>
55 <id>hadoop-0.20.2</id>
56 <dependencies>
57 <dependency>
58 <groupId>org.apache.hadoop</groupId>
59 <artifactId>hadoop-core</artifactId>
60 <version>0.20.2</version>
61 <type>jar</type>
62 <scope>compile</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.hadoop</groupId>
66 <artifactId>hadoop-test</artifactId>
67 <version>0.20.2</version>
68 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -040069 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070070 </dependency>
71 </dependencies>
72 </profile>
73 <profile>
74 <activation>
75 <activeByDefault>false</activeByDefault>
76 <property>
77 <name>hadoop</name>
78 <value>1.0.4</value>
79 </property>
80 </activation>
81 <id>hadoop-1.0.4</id>
82 <dependencies>
83 <dependency>
84 <groupId>org.apache.hadoop</groupId>
85 <artifactId>hadoop-core</artifactId>
86 <version>1.0.4</version>
87 <type>jar</type>
88 <scope>compile</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.apache.hadoop</groupId>
92 <artifactId>hadoop-minicluster</artifactId>
93 <version>1.0.4</version>
94 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -040095 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070096 </dependency>
97 <dependency>
98 <groupId>org.apache.hadoop</groupId>
99 <artifactId>hadoop-test</artifactId>
100 <version>1.0.4</version>
101 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400102 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700103 </dependency>
104 </dependencies>
105 </profile>
106 </profiles>
buyingyi55df5212013-03-24 07:20:08 +0000107
Michael Blowb4c1fb02016-05-09 15:41:00 -0700108 <dependencies>
109 <dependency>
110 <groupId>org.apache.hyracks</groupId>
111 <artifactId>hyracks-api</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400112 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700113 <type>jar</type>
114 <scope>compile</scope>
115 </dependency>
116 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000117</project>