blob: 50a5b51fa7bbb518ed884b93960e07e7aebeba8e [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +00001
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>
4 <groupId>edu.uci.ics.hyracks</groupId>
5 <artifactId>hyracks</artifactId>
6 <version>0.2.2-SNAPSHOT</version>
7 <packaging>pom</packaging>
buyingyi8d79d162012-10-22 23:04:47 +00008 <name>hyracks</name>
vinayakb0c860392012-10-06 18:47:20 +00009
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>
vinayakbe5add8a2012-10-06 19:00:14 +000056 <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/hyracks</connection>
57 <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/hyracks</developerConnection>
vinayakb0c860392012-10-06 18:47:20 +000058 <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/hyracks</url>
59 </scm>
60
61 <distributionManagement>
62 <repository>
63 <id>hyracks-releases</id>
64 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
65 </repository>
66 <snapshotRepository>
67 <id>hyracks-snapshots</id>
68 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-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>hyracks-ipc</module>
104 <module>hyracks-api</module>
105 <module>hyracks-dataflow-common</module>
106 <module>hyracks-dataflow-std</module>
107 <module>hyracks-dataflow-hadoop</module>
108 <module>hyracks-control</module>
109 <module>hyracks-net</module>
110 <module>hyracks-data</module>
111 <module>hyracks-cli</module>
112 <module>hyracks-storage-common</module>
113 <module>hyracks-storage-am-common</module>
114 <module>hyracks-storage-am-btree</module>
115 <module>hyracks-storage-am-invertedindex</module>
116 <module>hyracks-storage-am-rtree</module>
117 <module>hyracks-test-support</module>
118 <module>hyracks-tests</module>
119 <module>hyracks-server</module>
120 <module>hyracks-examples</module>
121 <module>hyracks-documentation</module>
122 <module>hyracks-hadoop-compat</module>
vinayakb0c860392012-10-06 18:47:20 +0000123 <!--module>hyracks-yarn</module-->
124 <module>hyracks-maven-plugins</module>
125 </modules>
126</project>