buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 2 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 3 | ! 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 Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 19 | !--> |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 20 | |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 21 | <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"> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 23 | <artifactId>hyracks-hdfs-1.x</artifactId> |
| 24 | <name>hyracks-hdfs-1.x</name> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 25 | <parent> |
| 26 | <artifactId>hyracks-hdfs</artifactId> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 27 | <groupId>org.apache.hyracks</groupId> |
Ian Maxon | fe7d551 | 2016-02-02 10:38:56 -0800 | [diff] [blame^] | 28 | <version>0.2.17-incubating</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 29 | </parent> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 30 | <properties> |
| 31 | <root.dir>${basedir}/../../..</root.dir> |
| 32 | </properties> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 33 | <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> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 45 | </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 Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 108 | <groupId>org.apache.hyracks</groupId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 109 | <artifactId>hyracks-api</artifactId> |
Ian Maxon | fe7d551 | 2016-02-02 10:38:56 -0800 | [diff] [blame^] | 110 | <version>0.2.17-incubating</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 111 | <type>jar</type> |
| 112 | <scope>compile</scope> |
| 113 | </dependency> |
| 114 | </dependencies> |
| 115 | </project> |