blob: 2b05f44f1b184fb84be9a9d69ca2a1537a67bb80 [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>
madhusudancs@gmail.comccd99382013-03-22 17:53:40 +000020 <source>1.6</source>
21 <target>1.6</target>
madhusudancs@gmail.comcaf08332013-03-15 08:26:56 +000022 <fork>true</fork>
madhusudancs@gmail.come5b8fab2013-02-21 20:04:21 +000023 </configuration>
24 </plugin>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-surefire-plugin</artifactId>
28 <version>2.7.2</version>
29 <configuration>
30 <forkMode>pertest</forkMode>
31 <includes>
32 <include>**/*TestSuite.java</include>
33 <include>**/*Test.java</include>
34 </includes>
35 </configuration>
36 </plugin>
37 </plugins>
38 </build>
39
40 <profiles>
41 <profile>
42 <activation>
43 <activeByDefault>true</activeByDefault>
madhusudancs@gmail.comcaf08332013-03-15 08:26:56 +000044 <property>
45 <name>hadoop</name>
46 <value>0.23.1</value>
47 </property>
madhusudancs@gmail.come5b8fab2013-02-21 20:04:21 +000048 </activation>
49 <id>hadoop-0.23.1</id>
50 <dependencies>
51 <dependency>
52 <groupId>org.apache.hadoop</groupId>
53 <artifactId>hadoop-common</artifactId>
54 <version>0.23.1</version>
55 <type>jar</type>
56 <scope>compile</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.hadoop</groupId>
60 <artifactId>hadoop-mapreduce-client-core</artifactId>
61 <version>0.23.1</version>
62 <type>jar</type>
63 <scope>compile</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.hadoop</groupId>
67 <artifactId>hadoop-hdfs</artifactId>
68 <version>0.23.1</version>
69 <type>jar</type>
70 <scope>compile</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.hadoop</groupId>
74 <artifactId>hadoop-minicluster</artifactId>
75 <version>0.23.1</version>
76 <type>jar</type>
77 <scope>compile</scope>
78 </dependency>
79 </dependencies>
80 </profile>
81 <profile>
82 <id>hadoop-0.23.6</id>
83 <activation>
84 <activeByDefault>false</activeByDefault>
madhusudancs@gmail.comcaf08332013-03-15 08:26:56 +000085 <property>
86 <name>hadoop</name>
87 <value>0.23.6</value>
88 </property>
madhusudancs@gmail.come5b8fab2013-02-21 20:04:21 +000089 </activation>
90 <dependencies>
91 <dependency>
92 <groupId>org.apache.hadoop</groupId>
93 <artifactId>hadoop-common</artifactId>
94 <version>0.23.6</version>
95 <type>jar</type>
96 <scope>compile</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hadoop</groupId>
100 <artifactId>hadoop-mapreduce-client-core</artifactId>
101 <version>0.23.6</version>
102 <type>jar</type>
103 <scope>compile</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.apache.hadoop</groupId>
107 <artifactId>hadoop-hdfs</artifactId>
108 <version>0.23.6</version>
109 <type>jar</type>
110 <scope>compile</scope>
111 </dependency>
112 <dependency>
113 <groupId>org.apache.hadoop</groupId>
114 <artifactId>hadoop-minicluster</artifactId>
115 <version>0.23.6</version>
116 <type>jar</type>
117 <scope>compile</scope>
118 </dependency>
119 </dependencies>
120 </profile>
madhusudancs@gmail.comcaf08332013-03-15 08:26:56 +0000121 <profile>
122 <activation>
123 <activeByDefault>false</activeByDefault>
124 <property>
125 <name>hadoop</name>
126 <value>cdh-4.2</value>
127 </property>
128 </activation>
129 <id>cdh-4.2</id>
130 <dependencies>
131 <dependency>
132 <groupId>org.apache.hadoop</groupId>
133 <artifactId>hadoop-common</artifactId>
134 <version>2.0.0-cdh4.2.0</version>
135 <type>jar</type>
136 <scope>compile</scope>
137 </dependency>
138 <dependency>
139 <groupId>org.apache.hadoop</groupId>
140 <artifactId>hadoop-mapreduce-client-core</artifactId>
141 <version>2.0.0-cdh4.2.0</version>
142 <type>jar</type>
143 <scope>compile</scope>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.hadoop</groupId>
147 <artifactId>hadoop-hdfs</artifactId>
148 <version>2.0.0-cdh4.2.0</version>
149 <type>jar</type>
150 <scope>compile</scope>
151 </dependency>
152 <dependency>
153 <groupId>org.apache.hadoop</groupId>
154 <artifactId>hadoop-minicluster</artifactId>
155 <version>2.0.0-cdh4.2.0</version>
156 <type>jar</type>
157 <scope>compile</scope>
158 </dependency>
159 </dependencies>
160 </profile>
161 <profile>
162 <activation>
163 <activeByDefault>false</activeByDefault>
164 <property>
165 <name>hadoop</name>
166 <value>cdh-4.1</value>
167 </property>
168 </activation>
169 <id>cdh-4.1</id>
170 <dependencies>
171 <dependency>
172 <groupId>org.apache.hadoop</groupId>
173 <artifactId>hadoop-common</artifactId>
174 <version>2.0.0-cdh4.1.0</version>
175 <type>jar</type>
176 <scope>compile</scope>
177 </dependency>
178 <dependency>
179 <groupId>org.apache.hadoop</groupId>
180 <artifactId>hadoop-mapreduce-client-core</artifactId>
181 <version>2.0.0-cdh4.1.0</version>
182 <type>jar</type>
183 <scope>compile</scope>
184 </dependency>
185 <dependency>
186 <groupId>org.apache.hadoop</groupId>
187 <artifactId>hadoop-hdfs</artifactId>
188 <version>2.0.0-cdh4.1.0</version>
189 <type>jar</type>
190 <scope>compile</scope>
191 </dependency>
192 <dependency>
193 <groupId>org.apache.hadoop</groupId>
194 <artifactId>hadoop-minicluster</artifactId>
195 <version>2.0.0-cdh4.1.0</version>
196 <type>jar</type>
197 <scope>compile</scope>
198 </dependency>
199 </dependencies>
200 </profile>
madhusudancs@gmail.come5b8fab2013-02-21 20:04:21 +0000201 </profiles>
202
203 <dependencies>
204 <dependency>
205 <groupId>edu.uci.ics.hyracks</groupId>
206 <artifactId>hyracks-api</artifactId>
207 <version>0.2.3-SNAPSHOT</version>
208 <type>jar</type>
209 <scope>compile</scope>
210 </dependency>
211 </dependencies>
madhusudancs@gmail.comcaf08332013-03-15 08:26:56 +0000212
213 <repositories>
214 <repository>
215 <id>cloudera</id>
216 <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
217 </repository>
218 </repositories>
madhusudancs@gmail.come5b8fab2013-02-21 20:04:21 +0000219</project>