blob: 350c40cc20a0104193f0768d3d500f6bde43ad9d [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>
buyingyie7752502012-10-08 00:35:31 +00006 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +00007 <packaging>pom</packaging>
8 <name>pregelix</name>
9
10 <properties>
11 <jvm.extraargs/>
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>
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
55 <scm>
56 <connection>scm:svn:https://pregelix.googlecode.com/svn/trunk/pregelix</connection>
57 <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/pregelix</developerConnection>
58 <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/pregelix</url>
59 </scm>
60
61 <distributionManagement>
62 <repository>
63 <id>hyracks-releases</id>
64 <url>http://obelix.ics.uci.edu/nexus/content/repositories/pregelix-releases/</url>
65 </repository>
66 <snapshotRepository>
67 <id>hyracks-snapshots</id>
68 <url>http://obelix.ics.uci.edu/nexus/content/repositories/pregelix-snapshots/</url>
69 </snapshotRepository>
70 </distributionManagement>
71
72 <reporting>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-changelog-plugin</artifactId>
77 </plugin>
78 </plugins>
79 </reporting>
80
81 <repositories>
82 <repository>
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>
buyingyi7f356c12012-10-07 00:23:17 +0000109 <module>pregelix-example</module>
buyingyi202af412012-10-08 23:07:09 +0000110 <module>pregelix-dist</module>
buyingyi7f356c12012-10-07 00:23:17 +0000111 </modules>
112</project>