blob: 5c19fc5ac4cf64bb17f5d7121c4890a1149a7182 [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>
buyingyi96b8caf2013-02-04 09:45:44 +000011
12 <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>
38 </plugins>
39 </build>
40
41 <dependencies>
42 <dependency>
43 <groupId>junit</groupId>
44 <artifactId>junit</artifactId>
45 <version>3.8.1</version>
46 <scope>test</scope>
47 </dependency>
48 <dependency>
49 <groupId>edu.uci.ics.hyracks</groupId>
50 <artifactId>hyracks-api</artifactId>
buyingyi5b939f22013-02-04 09:24:35 +000051 <version>0.2.3-SNAPSHOT</version>
52 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>edu.uci.ics.hyracks</groupId>
56 <artifactId>hyracks-dataflow-std</artifactId>
57 <version>0.2.3-SNAPSHOT</version>
58 <scope>compile</scope>
59 </dependency>
60 <dependency>
61 <groupId>edu.uci.ics.hyracks</groupId>
62 <artifactId>hyracks-dataflow-common</artifactId>
63 <version>0.2.3-SNAPSHOT</version>
buyingyi2c06ee62013-02-02 10:45:08 +000064 <scope>compile</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.hadoop</groupId>
68 <artifactId>hadoop-core</artifactId>
69 <version>0.20.2</version>
70 <type>jar</type>
71 <scope>compile</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.apache.hadoop</groupId>
75 <artifactId>hadoop-test</artifactId>
76 <version>0.20.2</version>
77 <type>jar</type>
78 <scope>test</scope>
79 </dependency>
80 </dependencies>
81</project>