blob: de5ef3b587efd0833858423a025a79af9e806339 [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.
15 !-->
buyingyi7f356c12012-10-07 00:23:17 +000016<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">
17 <modelVersion>4.0.0</modelVersion>
buyingyie7752502012-10-08 00:35:31 +000018 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000019 <artifactId>pregelix</artifactId>
buyingyi0f63d8b2013-07-22 11:33:10 -070020 <version>0.2.10-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000021 <packaging>pom</packaging>
22 <name>pregelix</name>
23
24 <properties>
vinayakb4a6309b2012-10-29 15:44:02 +000025 <jvm.extraargs />
buyingyi7f356c12012-10-07 00:23:17 +000026 </properties>
27
28 <profiles>
29 <profile>
30 <id>macosx</id>
31 <activation>
32 <os>
33 <name>mac os x</name>
34 </os>
35 <jdk>1.7</jdk>
36 </activation>
37 <properties>
38 <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs>
39 </properties>
40 </profile>
41 </profiles>
42
43 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-release-plugin</artifactId>
48 <version>2.0</version>
49 <configuration>
50 <goals>package source:jar javadoc:jar deploy:deploy</goals>
51 </configuration>
52 </plugin>
53 <plugin>
54 <groupId>org.codehaus.mojo</groupId>
55 <artifactId>versions-maven-plugin</artifactId>
56 <version>1.2</version>
57 </plugin>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-surefire-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000061 <version>2.12</version>
buyingyi7f356c12012-10-07 00:23:17 +000062 <configuration>
63 <forkMode>pertest</forkMode>
64 <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>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
69
vinayakbe3288f42012-10-29 15:39:22 +000070 <distributionManagement>
71 <repository>
72 <id>hyracks-releases</id>
73 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
74 </repository>
75 <snapshotRepository>
76 <id>hyracks-snapshots</id>
77 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
78 </snapshotRepository>
79 </distributionManagement>
80
buyingyi7f356c12012-10-07 00:23:17 +000081 <repositories>
82 <repository>
83 <id>hyracks-public</id>
84 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
85 </repository>
86 <repository>
87 <id>jboss-public</id>
88 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
89 </repository>
90 </repositories>
91
92 <pluginRepositories>
93 <pluginRepository>
94 <id>hyracks-public</id>
95 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
96 <releases>
97 <updatePolicy>always</updatePolicy>
98 </releases>
99 </pluginRepository>
100 </pluginRepositories>
101
102 <modules>
103 <module>pregelix-api</module>
104 <module>pregelix-dataflow-std-base</module>
105 <module>pregelix-dataflow-std</module>
106 <module>pregelix-dataflow</module>
107 <module>pregelix-runtime</module>
108 <module>pregelix-core</module>
buyingyi7f356c12012-10-07 00:23:17 +0000109 <module>pregelix-example</module>
buyingyi202af412012-10-08 23:07:09 +0000110 <module>pregelix-dist</module>
buyingyi7f356c12012-10-07 00:23:17 +0000111 </modules>
112</project>