blob: f609d3b7c8b3b062c6a9644121f6a3920950a245 [file] [log] [blame]
anbangxf61ba4c2013-02-14 10:27:36 +00001<?xml version="1.0" encoding="UTF-8"?>
2<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/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>edu.uci.ics.pregelix</groupId>
5 <artifactId>genomix-pregelix</artifactId>
anbangx9ce87422013-04-04 02:03:48 +00006 <packaging>jar</packaging>
buyingyi9e6792f2013-04-25 14:21:07 -07007 <version>0.2.6-SNAPSHOT</version>
anbangxf61ba4c2013-02-14 10:27:36 +00008 <name>genomix-pregelix</name>
9
AnbangXf60ef352013-06-17 16:52:01 -070010 <properties>
11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12 </properties>
anbangxf61ba4c2013-02-14 10:27:36 +000013
14 <profiles>
15 <profile>
16 <id>macosx</id>
17 <activation>
18 <os>
19 <name>mac os x</name>
20 </os>
21 <jdk>1.7</jdk>
22 </activation>
23 <properties>
24 <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs>
25 </properties>
26 </profile>
27 </profiles>
28
29 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-compiler-plugin</artifactId>
34 <version>2.0.2</version>
35 <configuration>
anbangx562c2fc2013-03-13 20:59:25 +000036 <source>1.7</source>
37 <target>1.7</target>
38 <fork>true</fork>
anbangxf61ba4c2013-02-14 10:27:36 +000039 </configuration>
40 </plugin>
41 <plugin>
42 <artifactId>maven-assembly-plugin</artifactId>
43 <configuration>
44 <descriptorRefs>
45 <descriptorRef>jar-with-dependencies</descriptorRef>
46 </descriptorRefs>
47 </configuration>
48 <executions>
49 <execution>
50 <id>make-my-jar-with-dependencies</id>
51 <phase>package</phase>
52 <goals>
53 <goal>single</goal>
54 </goals>
55 </execution>
56 </executions>
57 </plugin>
anbangx9ce87422013-04-04 02:03:48 +000058 <plugin>
59 <groupId>org.codehaus.mojo</groupId>
60 <artifactId>appassembler-maven-plugin</artifactId>
61 <version>1.3</version>
62 <executions>
63 <execution>
64 <configuration>
65 <programs>
66 <program>
anbangxf5ff29d2013-04-04 07:31:26 +000067 <mainClass>edu.uci.ics.genomix.pregelix.example.Client</mainClass>
anbangx9ce87422013-04-04 02:03:48 +000068 <name>pregelix</name>
69 </program>
70 </programs>
71 <repositoryLayout>flat</repositoryLayout>
72 <repositoryName>lib</repositoryName>
73 </configuration>
74 <phase>package</phase>
75 <goals>
76 <goal>assemble</goal>
77 </goals>
78 </execution>
79 </executions>
80 </plugin>
anbangxf61ba4c2013-02-14 10:27:36 +000081 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-surefire-plugin</artifactId>
84 <version>2.7.2</version>
85 <configuration>
86 <forkMode>pertest</forkMode>
87 <argLine>-enableassertions -Xmx2047m -Dfile.encoding=UTF-8
88 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
89 <includes>
90 <include>**/*TestSuite.java</include>
91 <include>**/*Test.java</include>
92 </includes>
93 </configuration>
94 </plugin>
95 <plugin>
96 <artifactId>maven-clean-plugin</artifactId>
97 <configuration>
98 <filesets>
99 <fileset>
100 <directory>.</directory>
101 <includes>
102 <include>teststore*</include>
103 <include>edu*</include>
104 <include>actual*</include>
105 <include>build*</include>
106 <include>expect*</include>
107 <include>ClusterController*</include>
108 <include>edu.uci.*</include>
109 </includes>
110 </fileset>
111 </filesets>
112 </configuration>
113 </plugin>
114 </plugins>
115 </build>
116
117 <dependencies>
118 <dependency>
anbangxf61ba4c2013-02-14 10:27:36 +0000119 <groupId>junit</groupId>
120 <artifactId>junit</artifactId>
121 <version>4.8.1</version>
122 <scope>test</scope>
123 </dependency>
anbangx648cedf2013-03-07 17:07:13 +0000124 <dependency>
125 <groupId>edu.uci.ics.hyracks</groupId>
126 <artifactId>pregelix-core</artifactId>
buyingyi9e6792f2013-04-25 14:21:07 -0700127 <version>0.2.6-SNAPSHOT</version>
anbangx648cedf2013-03-07 17:07:13 +0000128 <type>jar</type>
129 <scope>compile</scope>
130 </dependency>
anbangx69e64e42013-03-31 02:41:50 +0000131 <dependency>
132 <groupId>edu.uci.ics.hyracks</groupId>
133 <artifactId>genomix-data</artifactId>
buyingyi9e6792f2013-04-25 14:21:07 -0700134 <version>0.2.6-SNAPSHOT</version>
anbangx69e64e42013-03-31 02:41:50 +0000135 <type>jar</type>
136 <scope>compile</scope>
137 </dependency>
AnbangX950d05e2013-04-29 23:35:57 -0700138 <dependency>
139 <groupId>edu.uci.ics.hyracks</groupId>
140 <artifactId>hyracks-dataflow-std</artifactId>
141 <version>0.2.6-SNAPSHOT</version>
142 <type>jar</type>
143 <scope>compile</scope>
144 </dependency>
145 <dependency>
146 <groupId>edu.uci.ics.hyracks</groupId>
147 <artifactId>hyracks-api</artifactId>
148 <version>0.2.6-SNAPSHOT</version>
149 <type>jar</type>
150 <scope>compile</scope>
151 </dependency>
152 <dependency>
153 <groupId>edu.uci.ics.hyracks</groupId>
154 <artifactId>hyracks-dataflow-common</artifactId>
155 <version>0.2.6-SNAPSHOT</version>
156 <type>jar</type>
157 <scope>compile</scope>
158 </dependency>
159 <dependency>
160 <groupId>edu.uci.ics.hyracks</groupId>
161 <artifactId>hyracks-data-std</artifactId>
162 <version>0.2.6-SNAPSHOT</version>
163 </dependency>
164 <dependency>
165 <groupId>edu.uci.ics.hyracks</groupId>
166 <artifactId>hyracks-control-cc</artifactId>
167 <version>0.2.6-SNAPSHOT</version>
168 <type>jar</type>
169 <scope>compile</scope>
170 </dependency>
171 <dependency>
172 <groupId>edu.uci.ics.hyracks</groupId>
173 <artifactId>hyracks-control-nc</artifactId>
174 <version>0.2.6-SNAPSHOT</version>
175 <type>jar</type>
176 <scope>compile</scope>
177 </dependency>
178 <dependency>
179 <groupId>com.kenai.nbpwr</groupId>
180 <artifactId>org-apache-commons-io</artifactId>
181 <version>1.3.1-201002241208</version>
182 <type>nbm</type>
183 <scope>test</scope>
184 </dependency>
185 <dependency>
186 <groupId>edu.uci.ics.hyracks.examples</groupId>
187 <artifactId>hyracks-integration-tests</artifactId>
188 <version>0.2.6-SNAPSHOT</version>
189 <scope>test</scope>
190 </dependency>
191 <dependency>
192 <groupId>edu.uci.ics.hyracks</groupId>
193 <artifactId>hyracks-ipc</artifactId>
194 <version>0.2.6-SNAPSHOT</version>
195 <type>jar</type>
196 <scope>compile</scope>
197 </dependency>
198 <dependency>
199 <groupId>org.apache.hadoop</groupId>
200 <artifactId>hadoop-core</artifactId>
201 <version>0.20.2</version>
202 </dependency>
203 <dependency>
204 <groupId>org.apache.hadoop</groupId>
205 <artifactId>hadoop-test</artifactId>
206 <version>0.20.2</version>
207 </dependency>
208 <dependency>
209 <groupId>edu.uci.ics.hyracks</groupId>
210 <artifactId>hyracks-hdfs-core</artifactId>
211 <version>0.2.6-SNAPSHOT</version>
212 </dependency>
213 <dependency>
214 <groupId>edu.uci.ics.hyracks</groupId>
215 <artifactId>hyracks-hdfs-core</artifactId>
216 <version>0.2.6-SNAPSHOT</version>
217 <type>test-jar</type>
218 <scope>test</scope>
219 </dependency>
220 <dependency>
221 <groupId>edu.uci.ics.hyracks</groupId>
222 <artifactId>genomix-hyracks</artifactId>
223 <version>0.2.6-SNAPSHOT</version>
224 <type>jar</type>
225 <scope>compile</scope>
226 </dependency>
AnbangXf60ef352013-06-17 16:52:01 -0700227 <dependency>
228 <groupId>edu.uci.ics.hyracks</groupId>
229 <artifactId>genomix-hadoop</artifactId>
230 <version>0.2.6-SNAPSHOT</version>
231 <type>jar</type>
232 <scope>compile</scope>
233 </dependency>
anbangxf61ba4c2013-02-14 10:27:36 +0000234 </dependencies>
235
236 <scm>
237 <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</connection>
238 <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</developerConnection>
239 <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/fullstack/pregelix</url>
240 </scm>
241
242 <distributionManagement>
243 <repository>
244 <id>hyracks-releases</id>
245 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
246 </repository>
247 <snapshotRepository>
248 <id>hyracks-snapshots</id>
249 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
250 </snapshotRepository>
251 </distributionManagement>
252
253 <reporting>
254 <plugins>
255 <plugin>
256 <groupId>org.apache.maven.plugins</groupId>
257 <artifactId>maven-changelog-plugin</artifactId>
258 </plugin>
259 </plugins>
260 </reporting>
261
262 <repositories>
263 <repository>
264 <id>hyracks-public</id>
265 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
266 </repository>
267 <repository>
268 <id>jboss-public</id>
269 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
270 </repository>
271 </repositories>
272
273 <pluginRepositories>
274 <pluginRepository>
275 <id>hyracks-public</id>
276 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
277 <releases>
278 <updatePolicy>always</updatePolicy>
279 </releases>
280 </pluginRepository>
281 </pluginRepositories>
282</project>
283
284