buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 2 | <!-- |
| 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. |
buyingyi | dccd21f | 2013-09-11 11:36:08 -0700 | [diff] [blame] | 15 | !--><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"> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 16 | <modelVersion>4.0.0</modelVersion> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 17 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 18 | <artifactId>pregelix</artifactId> |
Ian Maxon | 1f30d4e | 2014-09-19 15:58:43 -0700 | [diff] [blame^] | 19 | <version>0.2.13</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 20 | <packaging>pom</packaging> |
| 21 | <name>pregelix</name> |
| 22 | |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 23 | <parent> |
| 24 | <groupId>edu.uci.ics.hyracks</groupId> |
| 25 | <artifactId>fullstack</artifactId> |
Ian Maxon | 1f30d4e | 2014-09-19 15:58:43 -0700 | [diff] [blame^] | 26 | <version>0.2.13</version> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 27 | </parent> |
| 28 | |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 29 | <properties> |
Vinayak Borkar | 9c83200 | 2013-12-11 12:08:57 -0800 | [diff] [blame] | 30 | <jvm.extraargs /> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 31 | </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> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 63 | </plugins> |
| 64 | </build> |
| 65 | |
vinayakb | e3288f4 | 2012-10-29 15:39:22 +0000 | [diff] [blame] | 66 | <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 | |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 77 | <repositories> |
| 78 | <repository> |
Vinayak Borkar | 29502a0 | 2013-12-11 11:18:27 -0800 | [diff] [blame] | 79 | <id>maven-central</id> |
| 80 | <url>http://repo1.maven.org/maven2/</url> |
| 81 | </repository> |
| 82 | <repository> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 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> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 109 | <module>pregelix-example</module> |
buyingyi | dccd21f | 2013-09-11 11:36:08 -0700 | [diff] [blame] | 110 | <module>pregelix-benchmark</module> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 111 | <module>pregelix-dist</module> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 112 | </modules> |
| 113 | </project> |