blob: 7b247a8b947b3a2267075fd1ade2aae53729868f [file] [log] [blame]
vinayakb1ca34f42013-03-25 03:17:01 +00001<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">
buyingyi7f356c12012-10-07 00:23:17 +00002 <modelVersion>4.0.0</modelVersion>
3 <artifactId>pregelix-core</artifactId>
4 <packaging>jar</packaging>
5 <name>pregelix-core</name>
6
7 <parent>
buyingyi202af412012-10-08 23:07:09 +00008 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>pregelix</artifactId>
vinayakb69525512013-03-25 03:17:32 +000010 <version>0.2.4-SNAPSHOT</version>
buyingyi202af412012-10-08 23:07:09 +000011 </parent>
buyingyi7f356c12012-10-07 00:23:17 +000012
13
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 </properties>
17
18 <build>
19 <plugins>
20 <plugin>
vinayakb4df31102013-04-06 18:28:48 +000021 <groupId>org.apache.maven.plugins</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000022 <artifactId>maven-jar-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000023 <version>2.3.2</version>
buyingyi7f356c12012-10-07 00:23:17 +000024 <executions>
25 <execution>
26 <id>balancer</id>
27 <goals>
28 <goal>jar</goal>
29 </goals>
30 <phase>package</phase>
31 <configuration>
32 <classifier>balancer</classifier>
33 <archive>
34 <manifest>
buyingyi4dcab6a2012-10-09 21:37:52 +000035 <MainClass>edu.uci.ics.pregelix.core.util.DataBalancer</MainClass>
buyingyi7f356c12012-10-07 00:23:17 +000036 </manifest>
37 </archive>
38 <includes>
buyingyi4dcab6a2012-10-09 21:37:52 +000039 <include>**/edu/uci/ics/pregelix/core/util/DataBalancer*</include>
buyingyi7f356c12012-10-07 00:23:17 +000040 </includes>
41 </configuration>
42 </execution>
buyingyi7f356c12012-10-07 00:23:17 +000043 <execution>
44 <id>generator</id>
45 <goals>
46 <goal>jar</goal>
47 </goals>
48 <phase>package</phase>
49 <configuration>
50 <classifier>generator</classifier>
51 <archive>
52 <manifest>
buyingyi4dcab6a2012-10-09 21:37:52 +000053 <MainClass>edu.uci.ics.pregelix.core.util.DataGenerator</MainClass>
buyingyi7f356c12012-10-07 00:23:17 +000054 </manifest>
55 </archive>
56 <includes>
buyingyi4dcab6a2012-10-09 21:37:52 +000057 <include>**/edu/uci/ics/pregelix/core/util/DataGenerator*</include>
buyingyi7f356c12012-10-07 00:23:17 +000058 </includes>
59 </configuration>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
buyingyi7f356c12012-10-07 00:23:17 +000064 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-compiler-plugin</artifactId>
66 <version>2.0.2</version>
67 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000068 <source>1.7</source>
69 <target>1.7</target>
70 <fork>true</fork>
buyingyi7f356c12012-10-07 00:23:17 +000071 </configuration>
72 </plugin>
73 <plugin>
74 <groupId>org.codehaus.mojo</groupId>
75 <artifactId>appassembler-maven-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000076 <version>1.3</version>
buyingyi7f356c12012-10-07 00:23:17 +000077 <executions>
78 <execution>
79 <configuration>
80 <programs>
81 <program>
82 <mainClass>org.apache.hadoop.util.RunJar</mainClass>
83 <name>pregelix-obselete</name>
84 </program>
85 </programs>
86 <repositoryLayout>flat</repositoryLayout>
87 <repositoryName>lib</repositoryName>
88 </configuration>
89 <phase>package</phase>
90 <goals>
91 <goal>assemble</goal>
92 </goals>
93 </execution>
94 </executions>
95 </plugin>
96 <plugin>
97 <artifactId>maven-assembly-plugin</artifactId>
98 <version>2.2-beta-5</version>
99 <executions>
100 <execution>
101 <configuration>
102 <descriptors>
103 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
104 </descriptors>
105 </configuration>
106 <phase>package</phase>
107 <goals>
108 <goal>attached</goal>
109 </goals>
110 </execution>
111 </executions>
112 </plugin>
113 <plugin>
114 <artifactId>maven-resources-plugin</artifactId>
115 <version>2.5</version>
116 <executions>
117 <execution>
118 <id>copy-scripts</id>
119 <!-- here the phase you need -->
120 <phase>package</phase>
121 <goals>
122 <goal>copy-resources</goal>
123 </goals>
124 <configuration>
125 <outputDirectory>target/appassembler/bin</outputDirectory>
126 <resources>
127 <resource>
128 <directory>src/main/resources/scripts</directory>
129 </resource>
130 </resources>
131 </configuration>
132 </execution>
133 <execution>
134 <id>copy-conf</id>
135 <!-- here the phase you need -->
136 <phase>package</phase>
137 <goals>
138 <goal>copy-resources</goal>
139 </goals>
140 <configuration>
141 <outputDirectory>target/appassembler/conf</outputDirectory>
142 <resources>
143 <resource>
144 <directory>src/main/resources/conf</directory>
145 </resource>
146 </resources>
147 </configuration>
148 </execution>
149 </executions>
150 </plugin>
151 <plugin>
152 <groupId>org.apache.maven.plugins</groupId>
153 <artifactId>maven-surefire-plugin</artifactId>
154 <version>2.7.2</version>
155 <configuration>
156 <forkMode>pertest</forkMode>
buyingyi55df5212013-03-24 07:20:08 +0000157 <argLine>-enableassertions -Xmx512m -XX:MaxPermSize=300m
158 -Dfile.encoding=UTF-8
buyingyi7f356c12012-10-07 00:23:17 +0000159 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
160 <includes>
161 <include>**/*TestSuite.java</include>
162 <include>**/*Test.java</include>
163 </includes>
164 </configuration>
165 </plugin>
166 <plugin>
167 <artifactId>maven-clean-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +0000168 <version>2.4.1</version>
buyingyi7f356c12012-10-07 00:23:17 +0000169 <configuration>
170 <filesets>
171 <fileset>
172 <directory>.</directory>
173 <includes>
174 <include>teststore*</include>
175 <include>edu*</include>
176 <include>actual*</include>
177 <include>build*</include>
178 <include>expect*</include>
179 <include>ClusterController*</include>
180 </includes>
181 </fileset>
182 </filesets>
183 </configuration>
184 </plugin>
185 </plugins>
186 </build>
187
188 <dependencies>
189 <dependency>
190 <groupId>junit</groupId>
191 <artifactId>junit</artifactId>
192 <version>4.8.1</version>
193 <scope>test</scope>
194 </dependency>
195 <dependency>
buyingyie7752502012-10-08 00:35:31 +0000196 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000197 <artifactId>pregelix-api</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000198 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000199 <type>jar</type>
200 <scope>compile</scope>
201 </dependency>
202 <dependency>
buyingyie7752502012-10-08 00:35:31 +0000203 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000204 <artifactId>pregelix-dataflow-std</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000205 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000206 <type>jar</type>
207 <scope>compile</scope>
208 </dependency>
209 <dependency>
buyingyie7752502012-10-08 00:35:31 +0000210 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000211 <artifactId>pregelix-dataflow</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000212 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000213 <type>jar</type>
214 <scope>compile</scope>
215 </dependency>
216 <dependency>
217 <groupId>edu.uci.ics.hyracks</groupId>
218 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000219 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000220 <type>jar</type>
221 <scope>compile</scope>
222 </dependency>
223 <dependency>
buyingyie7752502012-10-08 00:35:31 +0000224 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000225 <artifactId>pregelix-runtime</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000226 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000227 <type>jar</type>
228 <scope>compile</scope>
229 </dependency>
230 <dependency>
231 <groupId>edu.uci.ics.hyracks</groupId>
232 <artifactId>hyracks-api</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000233 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000234 <type>jar</type>
235 <scope>compile</scope>
236 </dependency>
237 <dependency>
238 <groupId>edu.uci.ics.hyracks</groupId>
239 <artifactId>hyracks-dataflow-common</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000240 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000241 <type>jar</type>
242 <scope>compile</scope>
243 </dependency>
244 <dependency>
245 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000246 <artifactId>hyracks-data-std</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000247 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000248 <type>jar</type>
249 <scope>compile</scope>
250 </dependency>
251 <dependency>
252 <groupId>edu.uci.ics.hyracks</groupId>
253 <artifactId>hyracks-storage-am-common</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000254 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000255 <type>jar</type>
256 <scope>compile</scope>
257 </dependency>
258 <dependency>
259 <groupId>edu.uci.ics.hyracks</groupId>
260 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000261 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000262 <type>jar</type>
263 <scope>compile</scope>
264 </dependency>
265 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000266 <groupId>edu.uci.ics.hyracks</groupId>
267 <artifactId>hyracks-control-cc</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000268 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000269 <type>jar</type>
270 <scope>compile</scope>
271 </dependency>
272 <dependency>
273 <groupId>edu.uci.ics.hyracks</groupId>
274 <artifactId>hyracks-control-nc</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000275 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000276 <type>jar</type>
277 <scope>compile</scope>
278 </dependency>
279 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000280 <groupId>com.kenai.nbpwr</groupId>
281 <artifactId>org-apache-commons-io</artifactId>
282 <version>1.3.1-201002241208</version>
283 <type>nbm</type>
284 <scope>test</scope>
285 </dependency>
286 <dependency>
287 <groupId>edu.uci.ics.hyracks.examples</groupId>
288 <artifactId>hyracks-integration-tests</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000289 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000290 <scope>test</scope>
291 </dependency>
292 <dependency>
293 <groupId>com.sun.jersey</groupId>
294 <artifactId>jersey</artifactId>
295 <version>0.8-ea</version>
296 <type>jar</type>
297 <scope>test</scope>
298 </dependency>
299 <dependency>
300 <groupId>javax.servlet</groupId>
301 <artifactId>javax.servlet-api</artifactId>
302 <version>3.0.1</version>
303 <type>jar</type>
304 <scope>compile</scope>
305 </dependency>
306 <dependency>
307 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000308 <artifactId>hyracks-ipc</artifactId>
vinayakb69525512013-03-25 03:17:32 +0000309 <version>0.2.4-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000310 <type>jar</type>
311 <scope>compile</scope>
312 </dependency>
313 </dependencies>
314</project>