blob: 2f167fb6c079d656aaabe03dae25bfb47ad56d1e [file] [log] [blame]
vinayakba9b0c5b2013-02-26 09:02:22 +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">
buyingyi7f356c12012-10-07 00:23:17 +00003 <modelVersion>4.0.0</modelVersion>
4 <artifactId>pregelix-core</artifactId>
5 <packaging>jar</packaging>
6 <name>pregelix-core</name>
7
8 <parent>
buyingyi202af412012-10-08 23:07:09 +00009 <groupId>edu.uci.ics.hyracks</groupId>
10 <artifactId>pregelix</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000011 <version>0.2.3-SNAPSHOT</version>
buyingyi202af412012-10-08 23:07:09 +000012 </parent>
buyingyi7f356c12012-10-07 00:23:17 +000013
14
15 <properties>
16 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17 </properties>
18
19 <build>
20 <plugins>
21 <plugin>
vinayakb84807932012-11-20 02:31:24 +000022 <groupId>org.apache.maven.plugins</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000023 <artifactId>maven-jar-plugin</artifactId>
vinayakb84807932012-11-20 02:31:24 +000024 <version>2.3.2</version>
buyingyi7f356c12012-10-07 00:23:17 +000025 <executions>
26 <execution>
27 <id>balancer</id>
28 <goals>
29 <goal>jar</goal>
30 </goals>
31 <phase>package</phase>
32 <configuration>
33 <classifier>balancer</classifier>
34 <archive>
35 <manifest>
buyingyi4dcab6a2012-10-09 21:37:52 +000036 <MainClass>edu.uci.ics.pregelix.core.util.DataBalancer</MainClass>
buyingyi7f356c12012-10-07 00:23:17 +000037 </manifest>
38 </archive>
39 <includes>
buyingyi4dcab6a2012-10-09 21:37:52 +000040 <include>**/edu/uci/ics/pregelix/core/util/DataBalancer*</include>
buyingyi7f356c12012-10-07 00:23:17 +000041 </includes>
42 </configuration>
43 </execution>
buyingyi7f356c12012-10-07 00:23:17 +000044 <execution>
45 <id>generator</id>
46 <goals>
47 <goal>jar</goal>
48 </goals>
49 <phase>package</phase>
50 <configuration>
51 <classifier>generator</classifier>
52 <archive>
53 <manifest>
buyingyi4dcab6a2012-10-09 21:37:52 +000054 <MainClass>edu.uci.ics.pregelix.core.util.DataGenerator</MainClass>
buyingyi7f356c12012-10-07 00:23:17 +000055 </manifest>
56 </archive>
57 <includes>
buyingyi4dcab6a2012-10-09 21:37:52 +000058 <include>**/edu/uci/ics/pregelix/core/util/DataGenerator*</include>
buyingyi7f356c12012-10-07 00:23:17 +000059 </includes>
60 </configuration>
61 </execution>
buyingyi7f356c12012-10-07 00:23:17 +000062 </executions>
63 </plugin>
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-compiler-plugin</artifactId>
67 <version>2.0.2</version>
68 <configuration>
vinayakb9506d182013-03-22 08:20:32 +000069 <source>1.7</source>
70 <target>1.7</target>
71 <fork>true</fork>
buyingyi7f356c12012-10-07 00:23:17 +000072 </configuration>
73 </plugin>
74 <plugin>
75 <groupId>org.codehaus.mojo</groupId>
76 <artifactId>appassembler-maven-plugin</artifactId>
vinayakb84807932012-11-20 02:31:24 +000077 <version>1.3</version>
buyingyi7f356c12012-10-07 00:23:17 +000078 <executions>
79 <execution>
80 <configuration>
81 <programs>
82 <program>
83 <mainClass>org.apache.hadoop.util.RunJar</mainClass>
84 <name>pregelix-obselete</name>
85 </program>
86 </programs>
87 <repositoryLayout>flat</repositoryLayout>
88 <repositoryName>lib</repositoryName>
89 </configuration>
90 <phase>package</phase>
91 <goals>
92 <goal>assemble</goal>
93 </goals>
94 </execution>
95 </executions>
96 </plugin>
97 <plugin>
98 <artifactId>maven-assembly-plugin</artifactId>
99 <version>2.2-beta-5</version>
100 <executions>
101 <execution>
102 <configuration>
103 <descriptors>
104 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
105 </descriptors>
106 </configuration>
107 <phase>package</phase>
108 <goals>
109 <goal>attached</goal>
110 </goals>
111 </execution>
112 </executions>
113 </plugin>
114 <plugin>
115 <artifactId>maven-resources-plugin</artifactId>
116 <version>2.5</version>
117 <executions>
118 <execution>
119 <id>copy-scripts</id>
120 <!-- here the phase you need -->
121 <phase>package</phase>
122 <goals>
123 <goal>copy-resources</goal>
124 </goals>
125 <configuration>
126 <outputDirectory>target/appassembler/bin</outputDirectory>
127 <resources>
128 <resource>
129 <directory>src/main/resources/scripts</directory>
130 </resource>
131 </resources>
132 </configuration>
133 </execution>
134 <execution>
135 <id>copy-conf</id>
136 <!-- here the phase you need -->
137 <phase>package</phase>
138 <goals>
139 <goal>copy-resources</goal>
140 </goals>
141 <configuration>
142 <outputDirectory>target/appassembler/conf</outputDirectory>
143 <resources>
144 <resource>
145 <directory>src/main/resources/conf</directory>
146 </resource>
147 </resources>
148 </configuration>
149 </execution>
150 </executions>
151 </plugin>
152 <plugin>
153 <groupId>org.apache.maven.plugins</groupId>
154 <artifactId>maven-surefire-plugin</artifactId>
155 <version>2.7.2</version>
156 <configuration>
157 <forkMode>pertest</forkMode>
vinayakba9b0c5b2013-02-26 09:02:22 +0000158 <argLine>-enableassertions -Xmx512m -XX:MaxPermSize=300m
159 -Dfile.encoding=UTF-8
buyingyi7f356c12012-10-07 00:23:17 +0000160 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
161 <includes>
162 <include>**/*TestSuite.java</include>
163 <include>**/*Test.java</include>
164 </includes>
165 </configuration>
166 </plugin>
167 <plugin>
168 <artifactId>maven-clean-plugin</artifactId>
vinayakb84807932012-11-20 02:31:24 +0000169 <version>2.4.1</version>
buyingyi7f356c12012-10-07 00:23:17 +0000170 <configuration>
171 <filesets>
172 <fileset>
173 <directory>.</directory>
174 <includes>
175 <include>teststore*</include>
176 <include>edu*</include>
177 <include>actual*</include>
178 <include>build*</include>
179 <include>expect*</include>
180 <include>ClusterController*</include>
181 </includes>
182 </fileset>
183 </filesets>
184 </configuration>
185 </plugin>
186 </plugins>
187 </build>
188
189 <dependencies>
190 <dependency>
191 <groupId>junit</groupId>
192 <artifactId>junit</artifactId>
193 <version>4.8.1</version>
194 <scope>test</scope>
195 </dependency>
196 <dependency>
buyingyie7752502012-10-08 00:35:31 +0000197 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000198 <artifactId>pregelix-api</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000199 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000200 <type>jar</type>
201 <scope>compile</scope>
202 </dependency>
203 <dependency>
buyingyie7752502012-10-08 00:35:31 +0000204 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000205 <artifactId>pregelix-dataflow-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000206 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000207 <type>jar</type>
208 <scope>compile</scope>
209 </dependency>
210 <dependency>
buyingyie7752502012-10-08 00:35:31 +0000211 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000212 <artifactId>pregelix-dataflow</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000213 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000214 <type>jar</type>
215 <scope>compile</scope>
216 </dependency>
217 <dependency>
218 <groupId>edu.uci.ics.hyracks</groupId>
219 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000220 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000221 <type>jar</type>
222 <scope>compile</scope>
223 </dependency>
224 <dependency>
buyingyie7752502012-10-08 00:35:31 +0000225 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000226 <artifactId>pregelix-runtime</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000227 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000228 <type>jar</type>
229 <scope>compile</scope>
230 </dependency>
231 <dependency>
232 <groupId>edu.uci.ics.hyracks</groupId>
233 <artifactId>hyracks-api</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000234 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000235 <type>jar</type>
236 <scope>compile</scope>
237 </dependency>
238 <dependency>
239 <groupId>edu.uci.ics.hyracks</groupId>
240 <artifactId>hyracks-dataflow-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000241 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000242 <type>jar</type>
243 <scope>compile</scope>
244 </dependency>
245 <dependency>
246 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000247 <artifactId>hyracks-data-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000248 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000249 <type>jar</type>
250 <scope>compile</scope>
251 </dependency>
252 <dependency>
253 <groupId>edu.uci.ics.hyracks</groupId>
254 <artifactId>hyracks-storage-am-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000255 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000256 <type>jar</type>
257 <scope>compile</scope>
258 </dependency>
259 <dependency>
260 <groupId>edu.uci.ics.hyracks</groupId>
261 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000262 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000263 <type>jar</type>
264 <scope>compile</scope>
265 </dependency>
266 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000267 <groupId>edu.uci.ics.hyracks</groupId>
268 <artifactId>hyracks-control-cc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000269 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000270 <type>jar</type>
271 <scope>compile</scope>
272 </dependency>
273 <dependency>
274 <groupId>edu.uci.ics.hyracks</groupId>
275 <artifactId>hyracks-control-nc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000276 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000277 <type>jar</type>
278 <scope>compile</scope>
279 </dependency>
280 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000281 <groupId>com.kenai.nbpwr</groupId>
282 <artifactId>org-apache-commons-io</artifactId>
283 <version>1.3.1-201002241208</version>
284 <type>nbm</type>
285 <scope>test</scope>
286 </dependency>
287 <dependency>
288 <groupId>edu.uci.ics.hyracks.examples</groupId>
289 <artifactId>hyracks-integration-tests</artifactId>
buyingyi25c53e52013-01-14 23:12:21 +0000290 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000291 <scope>test</scope>
292 </dependency>
293 <dependency>
294 <groupId>com.sun.jersey</groupId>
295 <artifactId>jersey</artifactId>
296 <version>0.8-ea</version>
297 <type>jar</type>
298 <scope>test</scope>
299 </dependency>
300 <dependency>
301 <groupId>javax.servlet</groupId>
302 <artifactId>javax.servlet-api</artifactId>
303 <version>3.0.1</version>
304 <type>jar</type>
305 <scope>compile</scope>
306 </dependency>
307 <dependency>
308 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000309 <artifactId>hyracks-ipc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000310 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000311 <type>jar</type>
312 <scope>compile</scope>
313 </dependency>
314 </dependencies>
315</project>