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> |
| 18 | <artifactId>hyracks-hdfs-0.20.2</artifactId> |
| 19 | <name>hyracks-hdfs-0.20.2</name> |
| 20 | <parent> |
| 21 | <artifactId>hyracks-hdfs</artifactId> |
| 22 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 23 | <version>0.2.10-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> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.maven.plugins</groupId> |
| 40 | <artifactId>maven-surefire-plugin</artifactId> |
| 41 | <version>2.7.2</version> |
| 42 | <configuration> |
| 43 | <forkMode>pertest</forkMode> |
| 44 | <includes> |
| 45 | <include>**/*TestSuite.java</include> |
| 46 | <include>**/*Test.java</include> |
| 47 | </includes> |
| 48 | </configuration> |
| 49 | </plugin> |
| 50 | </plugins> |
| 51 | </build> |
| 52 | |
| 53 | <profiles> |
| 54 | <profile> |
| 55 | <activation> |
| 56 | <activeByDefault>true</activeByDefault> |
| 57 | </activation> |
| 58 | <id>hadoop-0.20.2</id> |
| 59 | <dependencies> |
| 60 | <dependency> |
| 61 | <groupId>org.apache.hadoop</groupId> |
| 62 | <artifactId>hadoop-core</artifactId> |
| 63 | <version>0.20.2</version> |
| 64 | <type>jar</type> |
| 65 | <scope>compile</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.apache.hadoop</groupId> |
| 69 | <artifactId>hadoop-test</artifactId> |
| 70 | <version>0.20.2</version> |
| 71 | <type>jar</type> |
| 72 | <scope>compile</scope> |
| 73 | </dependency> |
| 74 | </dependencies> |
| 75 | </profile> |
| 76 | <profile> |
| 77 | <activation> |
| 78 | <activeByDefault>false</activeByDefault> |
| 79 | <property> |
| 80 | <name>hadoop</name> |
| 81 | <value>1.0.4</value> |
| 82 | </property> |
| 83 | </activation> |
| 84 | <id>hadoop-1.0.4</id> |
| 85 | <dependencies> |
| 86 | <dependency> |
| 87 | <groupId>org.apache.hadoop</groupId> |
| 88 | <artifactId>hadoop-core</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-minicluster</artifactId> |
| 96 | <version>1.0.4</version> |
| 97 | <type>jar</type> |
| 98 | <scope>compile</scope> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.apache.hadoop</groupId> |
| 102 | <artifactId>hadoop-test</artifactId> |
| 103 | <version>1.0.4</version> |
| 104 | <type>jar</type> |
| 105 | <scope>compile</scope> |
| 106 | </dependency> |
| 107 | </dependencies> |
| 108 | </profile> |
| 109 | </profiles> |
| 110 | |
| 111 | <dependencies> |
| 112 | <dependency> |
| 113 | <groupId>edu.uci.ics.hyracks</groupId> |
| 114 | <artifactId>hyracks-api</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 115 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 116 | <type>jar</type> |
| 117 | <scope>compile</scope> |
| 118 | </dependency> |
| 119 | </dependencies> |
| 120 | </project> |