buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 4 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 5 | <artifactId>pregelix</artifactId> |
vinayakb | ea837d0 | 2013-03-25 00:33:09 +0000 | [diff] [blame] | 6 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 7 | <packaging>pom</packaging> |
| 8 | <name>pregelix</name> |
| 9 | |
| 10 | <properties> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame] | 11 | <jvm.extraargs /> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 12 | </properties> |
| 13 | |
| 14 | <profiles> |
| 15 | <profile> |
| 16 | <id>macosx</id> |
| 17 | <activation> |
| 18 | <os> |
| 19 | <name>mac os x</name> |
| 20 | </os> |
| 21 | <jdk>1.7</jdk> |
| 22 | </activation> |
| 23 | <properties> |
| 24 | <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs> |
| 25 | </properties> |
| 26 | </profile> |
| 27 | </profiles> |
| 28 | |
| 29 | <build> |
| 30 | <plugins> |
| 31 | <plugin> |
| 32 | <groupId>org.apache.maven.plugins</groupId> |
| 33 | <artifactId>maven-release-plugin</artifactId> |
| 34 | <version>2.0</version> |
| 35 | <configuration> |
| 36 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 37 | </configuration> |
| 38 | </plugin> |
| 39 | <plugin> |
| 40 | <groupId>org.codehaus.mojo</groupId> |
| 41 | <artifactId>versions-maven-plugin</artifactId> |
| 42 | <version>1.2</version> |
| 43 | </plugin> |
| 44 | <plugin> |
| 45 | <groupId>org.apache.maven.plugins</groupId> |
| 46 | <artifactId>maven-surefire-plugin</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 47 | <version>2.13</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 48 | <configuration> |
| 49 | <forkMode>pertest</forkMode> |
| 50 | <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> |
| 51 | </configuration> |
| 52 | </plugin> |
| 53 | </plugins> |
| 54 | </build> |
| 55 | |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 56 | <reporting> |
| 57 | <plugins> |
| 58 | <plugin> |
| 59 | <groupId>org.apache.maven.plugins</groupId> |
| 60 | <artifactId>maven-changelog-plugin</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 61 | <version>2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 62 | </plugin> |
| 63 | </plugins> |
| 64 | </reporting> |
| 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> |
| 79 | <id>hyracks-public</id> |
| 80 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 81 | </repository> |
| 82 | <repository> |
| 83 | <id>jboss-public</id> |
| 84 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 85 | </repository> |
| 86 | </repositories> |
| 87 | |
| 88 | <pluginRepositories> |
| 89 | <pluginRepository> |
| 90 | <id>hyracks-public</id> |
| 91 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 92 | <releases> |
| 93 | <updatePolicy>always</updatePolicy> |
| 94 | </releases> |
| 95 | </pluginRepository> |
| 96 | </pluginRepositories> |
| 97 | |
| 98 | <modules> |
| 99 | <module>pregelix-api</module> |
| 100 | <module>pregelix-dataflow-std-base</module> |
| 101 | <module>pregelix-dataflow-std</module> |
| 102 | <module>pregelix-dataflow</module> |
| 103 | <module>pregelix-runtime</module> |
| 104 | <module>pregelix-core</module> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 105 | <module>pregelix-example</module> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 106 | <module>pregelix-dist</module> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 107 | </modules> |
| 108 | </project> |