blob: c708b0d130ac0872e8f3e255b6b1d3e08aa2eb4f [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
vinayakbbeac3b22013-03-24 07:52:57 +00002<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">
buyingyi55df5212013-03-24 07:20:08 +00003 <modelVersion>4.0.0</modelVersion>
4 <artifactId>hyracks-hdfs-0.20.2</artifactId>
5 <name>hyracks-hdfs-0.20.2</name>
6 <parent>
7 <artifactId>hyracks-hdfs</artifactId>
8 <groupId>edu.uci.ics.hyracks</groupId>
vinayakba553abb2013-03-24 07:53:49 +00009 <version>0.2.4-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000010 </parent>
11
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <version>2.0.2</version>
18 <configuration>
19 <source>1.7</source>
20 <target>1.7</target>
21 <fork>true</fork>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-surefire-plugin</artifactId>
27 <version>2.7.2</version>
28 <configuration>
29 <forkMode>pertest</forkMode>
30 <includes>
31 <include>**/*TestSuite.java</include>
32 <include>**/*Test.java</include>
33 </includes>
34 </configuration>
35 </plugin>
36 </plugins>
37 </build>
38
39 <profiles>
40 <profile>
41 <activation>
42 <activeByDefault>true</activeByDefault>
43 </activation>
44 <id>hadoop-0.20.2</id>
45 <dependencies>
46 <dependency>
47 <groupId>org.apache.hadoop</groupId>
48 <artifactId>hadoop-core</artifactId>
49 <version>0.20.2</version>
50 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.hadoop</groupId>
55 <artifactId>hadoop-test</artifactId>
56 <version>0.20.2</version>
57 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
60 </dependencies>
61 </profile>
62 <profile>
63 <activation>
64 <activeByDefault>false</activeByDefault>
65 <property>
66 <name>hadoop</name>
67 <value>1.0.4</value>
68 </property>
69 </activation>
70 <id>hadoop-1.0.4</id>
71 <dependencies>
72 <dependency>
73 <groupId>org.apache.hadoop</groupId>
74 <artifactId>hadoop-core</artifactId>
75 <version>1.0.4</version>
76 <type>jar</type>
77 <scope>compile</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.hadoop</groupId>
81 <artifactId>hadoop-minicluster</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-test</artifactId>
89 <version>1.0.4</version>
90 <type>jar</type>
91 <scope>compile</scope>
92 </dependency>
93 </dependencies>
94 </profile>
95 </profiles>
96
97 <dependencies>
98 <dependency>
99 <groupId>edu.uci.ics.hyracks</groupId>
100 <artifactId>hyracks-api</artifactId>
vinayakba553abb2013-03-24 07:53:49 +0000101 <version>0.2.4-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000102 <type>jar</type>
103 <scope>compile</scope>
104 </dependency>
105 </dependencies>
106</project>