blob: 513c77a19633123b5cc79cef889383b510b55fec [file] [log] [blame]
buyingyi7f356c12012-10-07 00:23:17 +00001<?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>
buyingyie7752502012-10-08 00:35:31 +00004 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +00005 <artifactId>pregelix</artifactId>
vinayakb5570ea32012-10-29 11:39:22 +00006 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +00007 <packaging>pom</packaging>
8 <name>pregelix</name>
9
10 <properties>
vinayakb5570ea32012-10-29 11:39:22 +000011 <jvm.extraargs/>
buyingyi7f356c12012-10-07 00:23:17 +000012 </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>
47 <configuration>
48 <forkMode>pertest</forkMode>
49 <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>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54
buyingyi7f356c12012-10-07 00:23:17 +000055 <reporting>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-changelog-plugin</artifactId>
60 </plugin>
61 </plugins>
62 </reporting>
63
64 <repositories>
65 <repository>
66 <id>hyracks-public</id>
67 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
68 </repository>
69 <repository>
70 <id>jboss-public</id>
71 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
72 </repository>
73 </repositories>
74
75 <pluginRepositories>
76 <pluginRepository>
77 <id>hyracks-public</id>
78 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
79 <releases>
80 <updatePolicy>always</updatePolicy>
81 </releases>
82 </pluginRepository>
83 </pluginRepositories>
84
85 <modules>
86 <module>pregelix-api</module>
87 <module>pregelix-dataflow-std-base</module>
88 <module>pregelix-dataflow-std</module>
89 <module>pregelix-dataflow</module>
90 <module>pregelix-runtime</module>
91 <module>pregelix-core</module>
buyingyi7f356c12012-10-07 00:23:17 +000092 <module>pregelix-example</module>
buyingyi202af412012-10-08 23:07:09 +000093 <module>pregelix-dist</module>
buyingyi7f356c12012-10-07 00:23:17 +000094 </modules>
95</project>