blob: 0d9b059467c95fdf46596f18779a86ca2fab8cf3 [file] [log] [blame]
buyingyi7f356c12012-10-07 00:23:17 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <artifactId>pregelix-dataflow</artifactId>
5 <packaging>jar</packaging>
6 <name>pregelix-dataflow</name>
7
8 <parent>
9 <groupId>edu.uci.ics.pregelix</groupId>
10 <artifactId>pregelix</artifactId>
11 <version>0.0.1-SNAPSHOT</version>
12 </parent>
13
14
15 <properties>
16 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17 </properties>
18
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-compiler-plugin</artifactId>
24 <version>2.0.2</version>
25 <configuration>
26 <source>1.6</source>
27 <target>1.6</target>
28 </configuration>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-surefire-plugin</artifactId>
33 <version>2.7.2</version>
34 <configuration>
35 <forkMode>pertest</forkMode>
36 <argLine>-enableassertions -Xmx2047m -Dfile.encoding=UTF-8
37 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
38 <includes>
39 <include>**/*TestSuite.java</include>
40 <include>**/*Test.java</include>
41 </includes>
42 </configuration>
43 </plugin>
44 <plugin>
45 <artifactId>maven-clean-plugin</artifactId>
46 <configuration>
47 <filesets>
48 <fileset>
49 <directory>.</directory>
50 <includes>
51 <include>teststore*</include>
52 <include>edu*</include>
53 <include>actual*</include>
54 <include>build*</include>
55 <include>expect*</include>
56 <include>ClusterController*</include>
57 </includes>
58 </fileset>
59 </filesets>
60 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64
65 <dependencies>
66 <dependency>
67 <groupId>junit</groupId>
68 <artifactId>junit</artifactId>
69 <version>4.8.1</version>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>edu.uci.ics.pregelix</groupId>
74 <artifactId>pregelix-api</artifactId>
75 <version>0.0.1-SNAPSHOT</version>
76 <type>jar</type>
77 <scope>compile</scope>
78 </dependency>
79 <dependency>
80 <groupId>edu.uci.ics.pregelix</groupId>
81 <artifactId>pregelix-dataflow-std-base</artifactId>
82 <version>0.0.1-SNAPSHOT</version>
83 <type>jar</type>
84 <scope>compile</scope>
85 </dependency>
86 <dependency>
87 <groupId>edu.uci.ics.hyracks</groupId>
88 <artifactId>hyracks-api</artifactId>
89 <version>0.2.2-SNAPSHOT</version>
90 <type>jar</type>
91 <scope>compile</scope>
92 </dependency>
93 <dependency>
94 <groupId>edu.uci.ics.hyracks</groupId>
95 <artifactId>hyracks-dataflow-common</artifactId>
96 <version>0.2.2-SNAPSHOT</version>
97 <type>jar</type>
98 <scope>compile</scope>
99 </dependency>
100 <dependency>
101 <groupId>edu.uci.ics.hyracks</groupId>
102 <artifactId>hyracks-dataflow-hadoop</artifactId>
103 <version>0.2.2-SNAPSHOT</version>
104 <type>jar</type>
105 <scope>compile</scope>
106 </dependency>
107 <dependency>
108 <groupId>edu.uci.ics.hyracks</groupId>
109 <artifactId>hyracks-data-std</artifactId>
110 <version>0.2.2-SNAPSHOT</version>
111 </dependency>
112 <dependency>
113 <groupId>org.apache.hadoop</groupId>
114 <artifactId>hadoop-core</artifactId>
115 <version>0.20.2</version>
116 <type>jar</type>
117 <scope>compile</scope>
118 </dependency>
119 <dependency>
120 <groupId>edu.uci.ics.hyracks</groupId>
121 <artifactId>hyracks-storage-am-common</artifactId>
122 <version>0.2.2-SNAPSHOT</version>
123 <type>jar</type>
124 <scope>compile</scope>
125 </dependency>
126 <dependency>
127 <groupId>edu.uci.ics.hyracks</groupId>
128 <artifactId>hyracks-storage-am-btree</artifactId>
129 <version>0.2.2-SNAPSHOT</version>
130 <type>jar</type>
131 <scope>compile</scope>
132 </dependency>
133 <dependency>
134 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
135 <artifactId>btreehelper</artifactId>
136 <version>0.2.2-SNAPSHOT</version>
137 <type>jar</type>
138 <scope>compile</scope>
139 </dependency>
140 <dependency>
141 <groupId>edu.uci.ics.hyracks</groupId>
142 <artifactId>hyracks-control-cc</artifactId>
143 <version>0.2.2-SNAPSHOT</version>
144 <type>jar</type>
145 <scope>compile</scope>
146 </dependency>
147 <dependency>
148 <groupId>edu.uci.ics.hyracks</groupId>
149 <artifactId>hyracks-control-nc</artifactId>
150 <version>0.2.2-SNAPSHOT</version>
151 <type>jar</type>
152 <scope>compile</scope>
153 </dependency>
154 <dependency>
155 <groupId>edu.uci.ics.hyracks</groupId>
156 <artifactId>hyracks-hadoop-compat</artifactId>
157 <version>0.2.2-SNAPSHOT</version>
158 <type>jar</type>
159 <scope>compile</scope>
160 </dependency>
161 <dependency>
162 <groupId>edu.uci.ics.hyracks</groupId>
163 <artifactId>hyracks-ipc</artifactId>
164 <version>0.2.2-SNAPSHOT</version>
165 <type>jar</type>
166 <scope>compile</scope>
167 </dependency>
168 </dependencies>
169</project>