blob: 118478ea99b4a393715e4351d0768443ce67fbf6 [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>
Ian Maxon46fee832014-07-11 22:51:56 -070019 <version>0.2.13-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000020 <packaging>pom</packaging>
21 <name>pregelix</name>
22
Chris Hillery4fc647c2014-02-13 14:49:58 -080023 <parent>
24 <groupId>edu.uci.ics.hyracks</groupId>
25 <artifactId>fullstack</artifactId>
Ian Maxon46fee832014-07-11 22:51:56 -070026 <version>0.2.13-SNAPSHOT</version>
Chris Hillery4fc647c2014-02-13 14:49:58 -080027 </parent>
28
buyingyi7f356c12012-10-07 00:23:17 +000029 <properties>
Vinayak Borkar9c832002013-12-11 12:08:57 -080030 <jvm.extraargs />
buyingyi7f356c12012-10-07 00:23:17 +000031 </properties>
32
33 <profiles>
34 <profile>
35 <id>macosx</id>
36 <activation>
37 <os>
38 <name>mac os x</name>
39 </os>
40 <jdk>1.7</jdk>
41 </activation>
42 <properties>
43 <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs>
44 </properties>
45 </profile>
46 </profiles>
47
48 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-release-plugin</artifactId>
53 <version>2.0</version>
54 <configuration>
55 <goals>package source:jar javadoc:jar deploy:deploy</goals>
56 </configuration>
57 </plugin>
58 <plugin>
59 <groupId>org.codehaus.mojo</groupId>
60 <artifactId>versions-maven-plugin</artifactId>
61 <version>1.2</version>
62 </plugin>
buyingyi7f356c12012-10-07 00:23:17 +000063 </plugins>
64 </build>
65
vinayakbe3288f42012-10-29 15:39:22 +000066 <distributionManagement>
67 <repository>
68 <id>hyracks-releases</id>
69 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
70 </repository>
71 <snapshotRepository>
72 <id>hyracks-snapshots</id>
73 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
74 </snapshotRepository>
75 </distributionManagement>
76
buyingyi7f356c12012-10-07 00:23:17 +000077 <repositories>
78 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -080079 <id>maven-central</id>
80 <url>http://repo1.maven.org/maven2/</url>
81 </repository>
82 <repository>
buyingyi7f356c12012-10-07 00:23:17 +000083 <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>
buyingyidccd21f2013-09-11 11:36:08 -0700110 <module>pregelix-benchmark</module>
buyingyi202af412012-10-08 23:07:09 +0000111 <module>pregelix-dist</module>
buyingyi7f356c12012-10-07 00:23:17 +0000112 </modules>
113</project>