Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 2 | ! 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 Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 18 | !--> |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 19 | |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 20 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 21 | <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 Maxon | 7c9a47a | 2017-01-18 12:17:08 -0800 | [diff] [blame^] | 27 | <version>0.3.0</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 28 | </parent> |
| 29 | <properties> |
| 30 | <root.dir>${basedir}/../../..</root.dir> |
| 31 | </properties> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 32 | |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 33 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 50 | <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 Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 69 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 70 | </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 Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 95 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 96 | </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 Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame] | 102 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 103 | </dependency> |
| 104 | </dependencies> |
| 105 | </profile> |
| 106 | </profiles> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 107 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 108 | <dependencies> |
| 109 | <dependency> |
| 110 | <groupId>org.apache.hyracks</groupId> |
| 111 | <artifactId>hyracks-api</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 112 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 113 | <type>jar</type> |
| 114 | <scope>compile</scope> |
| 115 | </dependency> |
| 116 | </dependencies> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 117 | </project> |