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> |
Vinayak Borkar | b779e71 | 2013-12-11 12:09:09 -0800 | [diff] [blame] | 19 | <version>0.2.11-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 20 | <packaging>pom</packaging> |
| 21 | <name>pregelix</name> |
| 22 | |
| 23 | <properties> |
Vinayak Borkar | 9c83200 | 2013-12-11 12:08:57 -0800 | [diff] [blame] | 24 | <jvm.extraargs /> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 25 | </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> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 60 | <version>2.12</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 61 | <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 | |
vinayakb | e3288f4 | 2012-10-29 15:39:22 +0000 | [diff] [blame] | 69 | <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 | |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 80 | <repositories> |
| 81 | <repository> |
Vinayak Borkar | 29502a0 | 2013-12-11 11:18:27 -0800 | [diff] [blame] | 82 | <id>maven-central</id> |
| 83 | <url>http://repo1.maven.org/maven2/</url> |
| 84 | </repository> |
| 85 | <repository> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 86 | <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> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 112 | <module>pregelix-example</module> |
buyingyi | dccd21f | 2013-09-11 11:36:08 -0700 | [diff] [blame] | 113 | <module>pregelix-benchmark</module> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 114 | <module>pregelix-dist</module> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 115 | </modules> |
| 116 | </project> |