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 | <!-- |
| 3 | ! Copyright 2009-2013 by The Regents of the University of California |
| 4 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ! you may not use this file except in compliance with the License. |
| 6 | ! you may obtain a copy of the License from |
| 7 | ! |
| 8 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ! |
| 10 | ! Unless required by applicable law or agreed to in writing, software |
| 11 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ! See the License for the specific language governing permissions and |
| 14 | ! limitations under the License. |
| 15 | !--> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 16 | <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] | 17 | <modelVersion>4.0.0</modelVersion> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 18 | <artifactId>hyracks-hdfs-1.x</artifactId> |
| 19 | <name>hyracks-hdfs-1.x</name> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <artifactId>hyracks-hdfs</artifactId> |
| 22 | <groupId>edu.uci.ics.hyracks</groupId> |
Ian Maxon | ce8ee31 | 2014-11-04 15:53:37 -0800 | [diff] [blame] | 23 | <version>0.2.15-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 24 | </parent> |
| 25 | |
| 26 | <build> |
| 27 | <plugins> |
| 28 | <plugin> |
| 29 | <groupId>org.apache.maven.plugins</groupId> |
| 30 | <artifactId>maven-compiler-plugin</artifactId> |
| 31 | <version>2.0.2</version> |
| 32 | <configuration> |
| 33 | <source>1.7</source> |
| 34 | <target>1.7</target> |
| 35 | <fork>true</fork> |
| 36 | </configuration> |
| 37 | </plugin> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 38 | </plugins> |
| 39 | </build> |
| 40 | |
| 41 | <profiles> |
| 42 | <profile> |
| 43 | <activation> |
| 44 | <activeByDefault>true</activeByDefault> |
| 45 | </activation> |
| 46 | <id>hadoop-0.20.2</id> |
| 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>org.apache.hadoop</groupId> |
| 50 | <artifactId>hadoop-core</artifactId> |
| 51 | <version>0.20.2</version> |
| 52 | <type>jar</type> |
| 53 | <scope>compile</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.apache.hadoop</groupId> |
| 57 | <artifactId>hadoop-test</artifactId> |
| 58 | <version>0.20.2</version> |
| 59 | <type>jar</type> |
| 60 | <scope>compile</scope> |
| 61 | </dependency> |
| 62 | </dependencies> |
| 63 | </profile> |
| 64 | <profile> |
| 65 | <activation> |
| 66 | <activeByDefault>false</activeByDefault> |
| 67 | <property> |
| 68 | <name>hadoop</name> |
| 69 | <value>1.0.4</value> |
| 70 | </property> |
| 71 | </activation> |
| 72 | <id>hadoop-1.0.4</id> |
| 73 | <dependencies> |
| 74 | <dependency> |
| 75 | <groupId>org.apache.hadoop</groupId> |
| 76 | <artifactId>hadoop-core</artifactId> |
| 77 | <version>1.0.4</version> |
| 78 | <type>jar</type> |
| 79 | <scope>compile</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.apache.hadoop</groupId> |
| 83 | <artifactId>hadoop-minicluster</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-test</artifactId> |
| 91 | <version>1.0.4</version> |
| 92 | <type>jar</type> |
| 93 | <scope>compile</scope> |
| 94 | </dependency> |
| 95 | </dependencies> |
| 96 | </profile> |
| 97 | </profiles> |
| 98 | |
| 99 | <dependencies> |
| 100 | <dependency> |
| 101 | <groupId>edu.uci.ics.hyracks</groupId> |
| 102 | <artifactId>hyracks-api</artifactId> |
Ian Maxon | ce8ee31 | 2014-11-04 15:53:37 -0800 | [diff] [blame] | 103 | <version>0.2.15-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 104 | <type>jar</type> |
| 105 | <scope>compile</scope> |
| 106 | </dependency> |
| 107 | </dependencies> |
| 108 | </project> |