blob: 9f96ac19f11431103321f7d872d82e407f4f1ced [file] [log] [blame]
buyingyi26ca36e2013-02-14 06:25:46 +00001<?xml version="1.0"?>
buyingyia7ee7572013-03-25 07:37:09 +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">
buyingyi26ca36e2013-02-14 06:25:46 +00003 <modelVersion>4.0.0</modelVersion>
buyingyi551f56c2013-02-14 08:31:21 +00004 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyi9173e202013-02-14 10:51:04 +00005 <name>hyracks-hdfs-0.23.1</name>
buyingyi26ca36e2013-02-14 06:25:46 +00006 <parent>
7 <artifactId>hyracks-hdfs</artifactId>
8 <groupId>edu.uci.ics.hyracks</groupId>
buyingyia7ee7572013-03-25 07:37:09 +00009 <version>0.2.4-SNAPSHOT</version>
buyingyi26ca36e2013-02-14 06:25:46 +000010 </parent>
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-compiler-plugin</artifactId>
16 <version>2.0.2</version>
17 <configuration>
madhusudancs@gmail.com8c6dcbc2013-03-06 01:19:58 +000018 <source>1.7</source>
19 <target>1.7</target>
buyingyibc168c82013-03-02 08:38:44 +000020 <fork>true</fork>
buyingyi26ca36e2013-02-14 06:25:46 +000021 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-surefire-plugin</artifactId>
26 <version>2.7.2</version>
27 <configuration>
28 <forkMode>pertest</forkMode>
29 <includes>
30 <include>**/*TestSuite.java</include>
31 <include>**/*Test.java</include>
32 </includes>
33 </configuration>
34 </plugin>
35 </plugins>
36 </build>
buyingyi551f56c2013-02-14 08:31:21 +000037
buyingyi28b719b2013-02-14 10:41:40 +000038 <profiles>
39 <profile>
40 <activation>
41 <activeByDefault>true</activeByDefault>
buyingyi6ee07d72013-03-08 06:16:02 +000042 <property>
43 <name>hadoop</name>
44 <value>0.23.1</value>
45 </property>
buyingyi28b719b2013-02-14 10:41:40 +000046 </activation>
47 <id>hadoop-0.23.1</id>
48 <dependencies>
49 <dependency>
50 <groupId>org.apache.hadoop</groupId>
51 <artifactId>hadoop-common</artifactId>
52 <version>0.23.1</version>
53 <type>jar</type>
54 <scope>compile</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.hadoop</groupId>
58 <artifactId>hadoop-mapreduce-client-core</artifactId>
59 <version>0.23.1</version>
60 <type>jar</type>
61 <scope>compile</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.apache.hadoop</groupId>
65 <artifactId>hadoop-hdfs</artifactId>
66 <version>0.23.1</version>
67 <type>jar</type>
68 <scope>compile</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.apache.hadoop</groupId>
72 <artifactId>hadoop-minicluster</artifactId>
73 <version>0.23.1</version>
74 <type>jar</type>
75 <scope>compile</scope>
76 </dependency>
77 </dependencies>
78 </profile>
79 <profile>
80 <id>hadoop-0.23.6</id>
81 <activation>
82 <activeByDefault>false</activeByDefault>
buyingyi6ee07d72013-03-08 06:16:02 +000083 <property>
84 <name>hadoop</name>
85 <value>0.23.6</value>
86 </property>
buyingyi28b719b2013-02-14 10:41:40 +000087 </activation>
88 <dependencies>
89 <dependency>
90 <groupId>org.apache.hadoop</groupId>
91 <artifactId>hadoop-common</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-mapreduce-client-core</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-hdfs</artifactId>
106 <version>0.23.6</version>
107 <type>jar</type>
108 <scope>compile</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.apache.hadoop</groupId>
112 <artifactId>hadoop-minicluster</artifactId>
113 <version>0.23.6</version>
114 <type>jar</type>
115 <scope>compile</scope>
116 </dependency>
117 </dependencies>
118 </profile>
buyingyi6ee07d72013-03-08 06:16:02 +0000119 <profile>
120 <activation>
121 <activeByDefault>false</activeByDefault>
122 <property>
123 <name>hadoop</name>
124 <value>cdh-4.2</value>
125 </property>
126 </activation>
127 <id>cdh-4.2</id>
128 <dependencies>
129 <dependency>
130 <groupId>org.apache.hadoop</groupId>
131 <artifactId>hadoop-common</artifactId>
132 <version>2.0.0-cdh4.2.0</version>
133 <type>jar</type>
134 <scope>compile</scope>
135 </dependency>
136 <dependency>
137 <groupId>org.apache.hadoop</groupId>
138 <artifactId>hadoop-mapreduce-client-core</artifactId>
139 <version>2.0.0-cdh4.2.0</version>
140 <type>jar</type>
141 <scope>compile</scope>
142 </dependency>
143 <dependency>
144 <groupId>org.apache.hadoop</groupId>
145 <artifactId>hadoop-hdfs</artifactId>
146 <version>2.0.0-cdh4.2.0</version>
147 <type>jar</type>
148 <scope>compile</scope>
149 </dependency>
150 <dependency>
151 <groupId>org.apache.hadoop</groupId>
152 <artifactId>hadoop-minicluster</artifactId>
153 <version>2.0.0-cdh4.2.0</version>
154 <type>jar</type>
155 <scope>compile</scope>
156 </dependency>
157 </dependencies>
158 </profile>
159 <profile>
160 <activation>
161 <activeByDefault>false</activeByDefault>
162 <property>
163 <name>hadoop</name>
164 <value>cdh-4.1</value>
165 </property>
166 </activation>
167 <id>cdh-4.1</id>
168 <dependencies>
169 <dependency>
170 <groupId>org.apache.hadoop</groupId>
171 <artifactId>hadoop-common</artifactId>
172 <version>2.0.0-cdh4.1.0</version>
173 <type>jar</type>
174 <scope>compile</scope>
175 </dependency>
176 <dependency>
177 <groupId>org.apache.hadoop</groupId>
178 <artifactId>hadoop-mapreduce-client-core</artifactId>
179 <version>2.0.0-cdh4.1.0</version>
180 <type>jar</type>
181 <scope>compile</scope>
182 </dependency>
183 <dependency>
184 <groupId>org.apache.hadoop</groupId>
185 <artifactId>hadoop-hdfs</artifactId>
186 <version>2.0.0-cdh4.1.0</version>
187 <type>jar</type>
188 <scope>compile</scope>
189 </dependency>
190 <dependency>
191 <groupId>org.apache.hadoop</groupId>
192 <artifactId>hadoop-minicluster</artifactId>
193 <version>2.0.0-cdh4.1.0</version>
194 <type>jar</type>
195 <scope>compile</scope>
196 </dependency>
197 </dependencies>
198 </profile>
buyingyi28b719b2013-02-14 10:41:40 +0000199 </profiles>
200
buyingyi551f56c2013-02-14 08:31:21 +0000201 <dependencies>
202 <dependency>
buyingyi551f56c2013-02-14 08:31:21 +0000203 <groupId>edu.uci.ics.hyracks</groupId>
204 <artifactId>hyracks-api</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +0000205 <version>0.2.4-SNAPSHOT</version>
buyingyi551f56c2013-02-14 08:31:21 +0000206 <type>jar</type>
207 <scope>compile</scope>
208 </dependency>
209 </dependencies>
buyingyi6ee07d72013-03-08 06:16:02 +0000210
211 <repositories>
212 <repository>
213 <id>cloudera</id>
214 <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
215 </repository>
216 </repositories>
buyingyi26ca36e2013-02-14 06:25:46 +0000217</project>