blob: 0e7ec3e898304158886c6e96652e3823c53918c1 [file] [log] [blame]
buyingyi7f356c12012-10-07 00:23:17 +00001<?xml version="1.0" encoding="UTF-8"?>
Till Westmann276bbc22013-06-05 18:56:27 -07002<!--
3 ! Copyright 2009-2013 by The Regents of the University of California
4 ! Licensed under the Apache License, Version 2.0 (the "License");
5 ! you may not use this file except in compliance with the License.
6 ! you may obtain a copy of the License from
7 !
8 ! http://www.apache.org/licenses/LICENSE-2.0
9 !
10 ! Unless required by applicable law or agreed to in writing, software
11 ! distributed under the License is distributed on an "AS IS" BASIS,
12 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ! See the License for the specific language governing permissions and
14 ! limitations under the License.
buyingyidccd21f2013-09-11 11:36:08 -070015 !--><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">
buyingyi7f356c12012-10-07 00:23:17 +000016 <modelVersion>4.0.0</modelVersion>
buyingyie7752502012-10-08 00:35:31 +000017 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000018 <artifactId>pregelix</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080019 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000020 <packaging>pom</packaging>
21 <name>pregelix</name>
22
23 <properties>
Vinayak Borkar9c832002013-12-11 12:08:57 -080024 <jvm.extraargs />
buyingyi7f356c12012-10-07 00:23:17 +000025 </properties>
26
27 <profiles>
28 <profile>
29 <id>macosx</id>
30 <activation>
31 <os>
32 <name>mac os x</name>
33 </os>
34 <jdk>1.7</jdk>
35 </activation>
36 <properties>
37 <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs>
38 </properties>
39 </profile>
40 </profiles>
41
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-release-plugin</artifactId>
47 <version>2.0</version>
48 <configuration>
49 <goals>package source:jar javadoc:jar deploy:deploy</goals>
50 </configuration>
51 </plugin>
52 <plugin>
53 <groupId>org.codehaus.mojo</groupId>
54 <artifactId>versions-maven-plugin</artifactId>
55 <version>1.2</version>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-surefire-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000060 <version>2.12</version>
buyingyi7f356c12012-10-07 00:23:17 +000061 <configuration>
62 <forkMode>pertest</forkMode>
63 <argLine>-enableassertions -Djava.util.logging.config.file=${user.home}/logging.properties -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${jvm.extraargs}</argLine>
64 </configuration>
65 </plugin>
66 </plugins>
67 </build>
68
vinayakbe3288f42012-10-29 15:39:22 +000069 <distributionManagement>
70 <repository>
71 <id>hyracks-releases</id>
72 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
73 </repository>
74 <snapshotRepository>
75 <id>hyracks-snapshots</id>
76 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
77 </snapshotRepository>
78 </distributionManagement>
79
buyingyi7f356c12012-10-07 00:23:17 +000080 <repositories>
81 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -080082 <id>maven-central</id>
83 <url>http://repo1.maven.org/maven2/</url>
84 </repository>
85 <repository>
buyingyi7f356c12012-10-07 00:23:17 +000086 <id>hyracks-public</id>
87 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
88 </repository>
89 <repository>
90 <id>jboss-public</id>
91 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
92 </repository>
93 </repositories>
94
95 <pluginRepositories>
96 <pluginRepository>
97 <id>hyracks-public</id>
98 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
99 <releases>
100 <updatePolicy>always</updatePolicy>
101 </releases>
102 </pluginRepository>
103 </pluginRepositories>
104
105 <modules>
106 <module>pregelix-api</module>
107 <module>pregelix-dataflow-std-base</module>
108 <module>pregelix-dataflow-std</module>
109 <module>pregelix-dataflow</module>
110 <module>pregelix-runtime</module>
111 <module>pregelix-core</module>
buyingyi7f356c12012-10-07 00:23:17 +0000112 <module>pregelix-example</module>
buyingyidccd21f2013-09-11 11:36:08 -0700113 <module>pregelix-benchmark</module>
buyingyi202af412012-10-08 23:07:09 +0000114 <module>pregelix-dist</module>
buyingyi7f356c12012-10-07 00:23:17 +0000115 </modules>
116</project>