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 | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame] | 28 | <version>0.2.16-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 29 | </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> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 43 | </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 Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 106 | <groupId>org.apache.hyracks</groupId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 107 | <artifactId>hyracks-api</artifactId> |
Ian Maxon | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame] | 108 | <version>0.2.16-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 109 | <type>jar</type> |
| 110 | <scope>compile</scope> |
| 111 | </dependency> |
| 112 | </dependencies> |
| 113 | </project> |