blob: 27a1e336e5ec8f065a6a9d77413f5389d74a60ba [file] [log] [blame]
madhusudancs@gmail.come5b8fab2013-02-21 20:04:21 +00001<?xml version="1.0"?>
2<project
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5 <modelVersion>4.0.0</modelVersion>
6 <artifactId>hyracks-hdfs-0.23.1</artifactId>
7 <name>hyracks-hdfs-0.23.1</name>
8 <parent>
9 <artifactId>hyracks-hdfs</artifactId>
10 <groupId>edu.uci.ics.hyracks</groupId>
11 <version>0.2.3-SNAPSHOT</version>
12 </parent>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <version>2.0.2</version>
19 <configuration>
20 <source>1.6</source>
21 <target>1.6</target>
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.23.1</id>
45 <dependencies>
46 <dependency>
47 <groupId>org.apache.hadoop</groupId>
48 <artifactId>hadoop-common</artifactId>
49 <version>0.23.1</version>
50 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.hadoop</groupId>
55 <artifactId>hadoop-mapreduce-client-core</artifactId>
56 <version>0.23.1</version>
57 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.apache.hadoop</groupId>
62 <artifactId>hadoop-hdfs</artifactId>
63 <version>0.23.1</version>
64 <type>jar</type>
65 <scope>compile</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.apache.hadoop</groupId>
69 <artifactId>hadoop-minicluster</artifactId>
70 <version>0.23.1</version>
71 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74 </dependencies>
75 </profile>
76 <profile>
77 <id>hadoop-0.23.6</id>
78 <activation>
79 <activeByDefault>false</activeByDefault>
80 </activation>
81 <dependencies>
82 <dependency>
83 <groupId>org.apache.hadoop</groupId>
84 <artifactId>hadoop-common</artifactId>
85 <version>0.23.6</version>
86 <type>jar</type>
87 <scope>compile</scope>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.hadoop</groupId>
91 <artifactId>hadoop-mapreduce-client-core</artifactId>
92 <version>0.23.6</version>
93 <type>jar</type>
94 <scope>compile</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.hadoop</groupId>
98 <artifactId>hadoop-hdfs</artifactId>
99 <version>0.23.6</version>
100 <type>jar</type>
101 <scope>compile</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.hadoop</groupId>
105 <artifactId>hadoop-minicluster</artifactId>
106 <version>0.23.6</version>
107 <type>jar</type>
108 <scope>compile</scope>
109 </dependency>
110 </dependencies>
111 </profile>
112 </profiles>
113
114 <dependencies>
115 <dependency>
116 <groupId>edu.uci.ics.hyracks</groupId>
117 <artifactId>hyracks-api</artifactId>
118 <version>0.2.3-SNAPSHOT</version>
119 <type>jar</type>
120 <scope>compile</scope>
121 </dependency>
122 </dependencies>
123</project>