blob: 2a4b0d1ee4f2e5fac12e2b107ce9f85aad4cb435 [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>
4 <artifactId>hyracks-hdfs-core</artifactId>
buyingyi551f56c2013-02-14 08:31:21 +00005 <name>hyracks-hdfs-core</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
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>
madhusudancs@gmail.com8c6dcbc2013-03-06 01:19:58 +000019 <source>1.7</source>
20 <target>1.7</target>
buyingyibc168c82013-03-02 08:38:44 +000021 <fork>true</fork>
buyingyi26ca36e2013-02-14 06:25:46 +000022 </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 <plugin>
37 <artifactId>maven-clean-plugin</artifactId>
38 <version>2.5</version>
39 <configuration>
40 <filesets>
41 <fileset>
42 <directory>.</directory>
43 <includes>
44 <include>edu*</include>
45 <include>actual*</include>
46 <include>build*</include>
47 <include>expect*</include>
48 <include>ClusterController*</include>
49 <include>edu.uci.*</include>
50 </includes>
51 </fileset>
52 </filesets>
53 </configuration>
54 </plugin>
55 </plugins>
56 </build>
57
58 <profiles>
59 <profile>
60 <activation>
61 <activeByDefault>true</activeByDefault>
62 </activation>
buyingyi28b719b2013-02-14 10:41:40 +000063 <id>hadoop-0.20.2</id>
buyingyi26ca36e2013-02-14 06:25:46 +000064 <dependencies>
65 <dependency>
buyingyi551f56c2013-02-14 08:31:21 +000066 <groupId>edu.uci.ics.hyracks</groupId>
67 <artifactId>hyracks-hdfs-0.20.2</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +000068 <version>${project.version}</version>
buyingyi26ca36e2013-02-14 06:25:46 +000069 <type>jar</type>
70 <scope>compile</scope>
71 </dependency>
72 </dependencies>
73 </profile>
74 <profile>
75 <activation>
76 <activeByDefault>false</activeByDefault>
buyingyi6ee07d72013-03-08 06:16:02 +000077 <property>
78 <name>hadoop</name>
79 <value>1.0.4</value>
80 </property>
buyingyi26ca36e2013-02-14 06:25:46 +000081 </activation>
buyingyi28b719b2013-02-14 10:41:40 +000082 <id>hadoop-1.0.4</id>
83 <dependencies>
84 <dependency>
85 <groupId>edu.uci.ics.hyracks</groupId>
86 <artifactId>hyracks-hdfs-0.20.2</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +000087 <version>${project.version}</version>
buyingyi28b719b2013-02-14 10:41:40 +000088 <type>jar</type>
89 <scope>compile</scope>
90 </dependency>
91 </dependencies>
92 </profile>
93 <profile>
94 <activation>
95 <activeByDefault>false</activeByDefault>
buyingyi6ee07d72013-03-08 06:16:02 +000096 <property>
97 <name>hadoop</name>
98 <value>0.23.1</value>
99 </property>
buyingyi28b719b2013-02-14 10:41:40 +0000100 </activation>
101 <id>hadoop-0.23.1</id>
102 <dependencies>
103 <dependency>
104 <groupId>edu.uci.ics.hyracks</groupId>
105 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +0000106 <version>${project.version}</version>
buyingyi28b719b2013-02-14 10:41:40 +0000107 <type>jar</type>
108 <scope>compile</scope>
109 </dependency>
110 </dependencies>
111 </profile>
112 <profile>
113 <activation>
114 <activeByDefault>false</activeByDefault>
buyingyi6ee07d72013-03-08 06:16:02 +0000115 <property>
116 <name>hadoop</name>
117 <value>0.23.6</value>
118 </property>
buyingyi28b719b2013-02-14 10:41:40 +0000119 </activation>
120 <id>hadoop-0.23.6</id>
buyingyi26ca36e2013-02-14 06:25:46 +0000121 <dependencies>
122 <dependency>
buyingyi551f56c2013-02-14 08:31:21 +0000123 <groupId>edu.uci.ics.hyracks</groupId>
124 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +0000125 <version>${project.version}</version>
buyingyi26ca36e2013-02-14 06:25:46 +0000126 <type>jar</type>
127 <scope>compile</scope>
128 </dependency>
129 </dependencies>
130 </profile>
buyingyi6ee07d72013-03-08 06:16:02 +0000131 <profile>
132 <activation>
133 <activeByDefault>false</activeByDefault>
134 <property>
135 <name>hadoop</name>
136 <value>cdh-4.1</value>
137 </property>
138 </activation>
139 <id>cdh-4.1</id>
140 <dependencies>
141 <dependency>
142 <groupId>edu.uci.ics.hyracks</groupId>
143 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +0000144 <version>${project.version}</version>
buyingyi6ee07d72013-03-08 06:16:02 +0000145 <type>jar</type>
146 <scope>compile</scope>
147 </dependency>
148 </dependencies>
149 </profile>
150 <profile>
151 <activation>
152 <activeByDefault>false</activeByDefault>
153 <property>
154 <name>hadoop</name>
155 <value>cdh-4.2</value>
156 </property>
157 </activation>
158 <id>cdh-4.2</id>
159 <dependencies>
160 <dependency>
161 <groupId>edu.uci.ics.hyracks</groupId>
162 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +0000163 <version>${project.version}</version>
buyingyi6ee07d72013-03-08 06:16:02 +0000164 <type>jar</type>
165 <scope>compile</scope>
166 </dependency>
167 </dependencies>
168 </profile>
buyingyi26ca36e2013-02-14 06:25:46 +0000169 </profiles>
170
171 <dependencies>
172 <dependency>
173 <groupId>junit</groupId>
174 <artifactId>junit</artifactId>
175 <version>3.8.1</version>
176 <scope>test</scope>
177 </dependency>
178 <dependency>
179 <groupId>edu.uci.ics.hyracks</groupId>
180 <artifactId>hyracks-api</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +0000181 <version>0.2.4-SNAPSHOT</version>
buyingyi26ca36e2013-02-14 06:25:46 +0000182 <scope>compile</scope>
183 </dependency>
184 <dependency>
185 <groupId>edu.uci.ics.hyracks</groupId>
186 <artifactId>hyracks-dataflow-std</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +0000187 <version>0.2.4-SNAPSHOT</version>
buyingyi26ca36e2013-02-14 06:25:46 +0000188 <scope>compile</scope>
189 </dependency>
190 <dependency>
191 <groupId>edu.uci.ics.hyracks</groupId>
192 <artifactId>hyracks-dataflow-common</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +0000193 <version>0.2.4-SNAPSHOT</version>
buyingyi26ca36e2013-02-14 06:25:46 +0000194 <scope>compile</scope>
195 </dependency>
196 <dependency>
197 <groupId>edu.uci.ics.hyracks</groupId>
198 <artifactId>hyracks-control-cc</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +0000199 <version>0.2.4-SNAPSHOT</version>
buyingyi26ca36e2013-02-14 06:25:46 +0000200 <scope>test</scope>
201 </dependency>
202 <dependency>
203 <groupId>edu.uci.ics.hyracks</groupId>
204 <artifactId>hyracks-control-nc</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +0000205 <version>0.2.4-SNAPSHOT</version>
buyingyi26ca36e2013-02-14 06:25:46 +0000206 <scope>test</scope>
207 </dependency>
208 <dependency>
209 <groupId>org.apache.commons</groupId>
210 <artifactId>commons-io</artifactId>
211 <version>1.3.2</version>
212 <scope>test</scope>
213 </dependency>
214 </dependencies>
215</project>