blob: aa0355148b349fa4d8afff94a8536d46396566f9 [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>
AsterixDB Jenkins0948b242017-11-20 15:56:08 -080027 <version>0.3.4-SNAPSHOT</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>
Michael Blow5ab717c2016-10-05 11:53:37 -040038 <executions>
39 <execution>
40 <goals>
41 <goal>test-jar</goal>
42 </goals>
43 </execution>
44 </executions>
45 </plugin>
46 </plugins>
47 </build>
48
Michael Blowb4c1fb02016-05-09 15:41:00 -070049 <profiles>
50 <profile>
51 <activation>
52 <activeByDefault>true</activeByDefault>
53 </activation>
54 <id>hadoop-0.20.2</id>
55 <dependencies>
56 <dependency>
57 <groupId>org.apache.hadoop</groupId>
58 <artifactId>hadoop-core</artifactId>
59 <version>0.20.2</version>
60 <type>jar</type>
61 <scope>compile</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.apache.hadoop</groupId>
65 <artifactId>hadoop-test</artifactId>
66 <version>0.20.2</version>
67 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -040068 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070069 </dependency>
70 </dependencies>
71 </profile>
72 <profile>
73 <activation>
74 <activeByDefault>false</activeByDefault>
75 <property>
76 <name>hadoop</name>
77 <value>1.0.4</value>
78 </property>
79 </activation>
80 <id>hadoop-1.0.4</id>
81 <dependencies>
82 <dependency>
83 <groupId>org.apache.hadoop</groupId>
84 <artifactId>hadoop-core</artifactId>
85 <version>1.0.4</version>
86 <type>jar</type>
87 <scope>compile</scope>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.hadoop</groupId>
91 <artifactId>hadoop-minicluster</artifactId>
92 <version>1.0.4</version>
93 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -040094 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070095 </dependency>
96 <dependency>
97 <groupId>org.apache.hadoop</groupId>
98 <artifactId>hadoop-test</artifactId>
99 <version>1.0.4</version>
100 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400101 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700102 </dependency>
103 </dependencies>
104 </profile>
105 </profiles>
buyingyi55df5212013-03-24 07:20:08 +0000106
Michael Blowb4c1fb02016-05-09 15:41:00 -0700107 <dependencies>
108 <dependency>
109 <groupId>org.apache.hyracks</groupId>
110 <artifactId>hyracks-api</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400111 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700112 <type>jar</type>
113 <scope>compile</scope>
114 </dependency>
115 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000116</project>