blob: c9aa1b9bd538e742c0f69805e9bd0941bd332e76 [file] [log] [blame]
buyingyi26ca36e2013-02-14 06:25:46 +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-core</artifactId>
7 <name>hyracks-hdfs-core</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
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <version>2.0.2</version>
20 <configuration>
21 <source>1.6</source>
22 <target>1.6</target>
23 </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 <plugin>
38 <artifactId>maven-clean-plugin</artifactId>
39 <version>2.5</version>
40 <configuration>
41 <filesets>
42 <fileset>
43 <directory>.</directory>
44 <includes>
45 <include>edu*</include>
46 <include>actual*</include>
47 <include>build*</include>
48 <include>expect*</include>
49 <include>ClusterController*</include>
50 <include>edu.uci.*</include>
51 </includes>
52 </fileset>
53 </filesets>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58
59 <profiles>
60 <profile>
61 <activation>
62 <activeByDefault>true</activeByDefault>
63 </activation>
64 <dependencies>
65 <dependency>
66 <groupId>org.apache.hadoop</groupId>
67 <artifactId>hadoop-core</artifactId>
68 <version>0.20.2</version>
69 <type>jar</type>
70 <scope>compile</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.hadoop</groupId>
74 <artifactId>hadoop-test</artifactId>
75 <version>0.20.2</version>
76 <type>jar</type>
77 <scope>compile</scope>
78 </dependency>
79 </dependencies>
80 </profile>
81 <profile>
82 <activation>
83 <activeByDefault>false</activeByDefault>
84 </activation>
85 <id>hadoop-0.22.0</id>
86 <dependencies>
87 <dependency>
88 <groupId>org.apache.hadoop</groupId>
89 <artifactId>hadoop-common</artifactId>
90 <version>0.22.0</version>
91 <type>jar</type>
92 <scope>compile</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.hadoop</groupId>
96 <artifactId>hadoop-mapred</artifactId>
97 <version>0.22.0</version>
98 <type>jar</type>
99 <scope>compile</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.hadoop</groupId>
103 <artifactId>hadoop-hdfs</artifactId>
104 <version>0.22.0</version>
105 <type>jar</type>
106 <scope>compile</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.apache.hadoop</groupId>
110 <artifactId>hadoop-hdfs-test</artifactId>
111 <version>0.22.0</version>
112 <type>jar</type>
113 <scope>compile</scope>
114 </dependency>
115 </dependencies>
116 </profile>
117 </profiles>
118
119 <dependencies>
120 <dependency>
121 <groupId>junit</groupId>
122 <artifactId>junit</artifactId>
123 <version>3.8.1</version>
124 <scope>test</scope>
125 </dependency>
126 <dependency>
127 <groupId>edu.uci.ics.hyracks</groupId>
128 <artifactId>hyracks-api</artifactId>
129 <version>0.2.3-SNAPSHOT</version>
130 <scope>compile</scope>
131 </dependency>
132 <dependency>
133 <groupId>edu.uci.ics.hyracks</groupId>
134 <artifactId>hyracks-dataflow-std</artifactId>
135 <version>0.2.3-SNAPSHOT</version>
136 <scope>compile</scope>
137 </dependency>
138 <dependency>
139 <groupId>edu.uci.ics.hyracks</groupId>
140 <artifactId>hyracks-dataflow-common</artifactId>
141 <version>0.2.3-SNAPSHOT</version>
142 <scope>compile</scope>
143 </dependency>
144 <dependency>
145 <groupId>edu.uci.ics.hyracks</groupId>
146 <artifactId>hyracks-control-cc</artifactId>
147 <version>0.2.3-SNAPSHOT</version>
148 <scope>test</scope>
149 </dependency>
150 <dependency>
151 <groupId>edu.uci.ics.hyracks</groupId>
152 <artifactId>hyracks-control-nc</artifactId>
153 <version>0.2.3-SNAPSHOT</version>
154 <scope>test</scope>
155 </dependency>
156 <dependency>
157 <groupId>org.apache.commons</groupId>
158 <artifactId>commons-io</artifactId>
159 <version>1.3.2</version>
160 <scope>test</scope>
161 </dependency>
162 </dependencies>
163</project>