blob: b80dbd5f5a4ff8240d68f49b05081417771ddefb [file] [log] [blame]
buyingyi2c06ee62013-02-02 10:45:08 +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 <parent>
7 <artifactId>hyracks</artifactId>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <version>0.2.3-SNAPSHOT</version>
10 </parent>
buyingyi12ff3d12013-02-05 02:05:27 +000011
buyingyi96b8caf2013-02-04 09:45:44 +000012 <artifactId>hyracks-hdfs</artifactId>
13 <name>hyracks-hdfs</name>
buyingyi2c06ee62013-02-02 10:45:08 +000014
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-compiler-plugin</artifactId>
20 <version>2.0.2</version>
21 <configuration>
22 <source>1.6</source>
23 <target>1.6</target>
24 </configuration>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-surefire-plugin</artifactId>
29 <version>2.7.2</version>
30 <configuration>
31 <forkMode>pertest</forkMode>
32 <includes>
33 <include>**/*TestSuite.java</include>
34 <include>**/*Test.java</include>
35 </includes>
36 </configuration>
37 </plugin>
buyingyi12ff3d12013-02-05 02:05:27 +000038 <plugin>
39 <artifactId>maven-clean-plugin</artifactId>
vinayakb0201e3e2013-02-05 06:03:27 +000040 <version>2.5</version>
buyingyi12ff3d12013-02-05 02:05:27 +000041 <configuration>
42 <filesets>
43 <fileset>
44 <directory>.</directory>
45 <includes>
buyingyi12ff3d12013-02-05 02:05:27 +000046 <include>edu*</include>
47 <include>actual*</include>
48 <include>build*</include>
49 <include>expect*</include>
50 <include>ClusterController*</include>
buyingyieb55df52013-02-05 09:48:46 +000051 <include>edu.uci.*</include>
buyingyi12ff3d12013-02-05 02:05:27 +000052 </includes>
53 </fileset>
54 </filesets>
55 </configuration>
56 </plugin>
buyingyi2c06ee62013-02-02 10:45:08 +000057 </plugins>
58 </build>
59
60 <dependencies>
61 <dependency>
62 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
64 <version>3.8.1</version>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>edu.uci.ics.hyracks</groupId>
69 <artifactId>hyracks-api</artifactId>
buyingyi5b939f22013-02-04 09:24:35 +000070 <version>0.2.3-SNAPSHOT</version>
71 <scope>compile</scope>
72 </dependency>
73 <dependency>
74 <groupId>edu.uci.ics.hyracks</groupId>
75 <artifactId>hyracks-dataflow-std</artifactId>
76 <version>0.2.3-SNAPSHOT</version>
77 <scope>compile</scope>
78 </dependency>
79 <dependency>
80 <groupId>edu.uci.ics.hyracks</groupId>
81 <artifactId>hyracks-dataflow-common</artifactId>
82 <version>0.2.3-SNAPSHOT</version>
buyingyi2c06ee62013-02-02 10:45:08 +000083 <scope>compile</scope>
84 </dependency>
85 <dependency>
86 <groupId>org.apache.hadoop</groupId>
87 <artifactId>hadoop-core</artifactId>
88 <version>0.20.2</version>
89 <type>jar</type>
90 <scope>compile</scope>
91 </dependency>
92 <dependency>
buyingyi12ff3d12013-02-05 02:05:27 +000093 <groupId>edu.uci.ics.hyracks</groupId>
94 <artifactId>hyracks-control-cc</artifactId>
95 <version>0.2.3-SNAPSHOT</version>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>edu.uci.ics.hyracks</groupId>
100 <artifactId>hyracks-control-nc</artifactId>
101 <version>0.2.3-SNAPSHOT</version>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
buyingyi2c06ee62013-02-02 10:45:08 +0000105 <groupId>org.apache.hadoop</groupId>
106 <artifactId>hadoop-test</artifactId>
107 <version>0.20.2</version>
108 <type>jar</type>
109 <scope>test</scope>
110 </dependency>
buyingyi12ff3d12013-02-05 02:05:27 +0000111 <dependency>
112 <groupId>org.apache.commons</groupId>
113 <artifactId>commons-io</artifactId>
114 <version>1.3.2</version>
115 <scope>test</scope>
116 </dependency>
buyingyi2c06ee62013-02-02 10:45:08 +0000117 </dependencies>
118</project>