blob: d8d3c63641c7be5e9b42cae94a6cb2dcc246ecb6 [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0" encoding="UTF-8"?>
Till Westmann276bbc22013-06-05 18:56:27 -07002<!--
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.
15 !-->
vinayakb0c860392012-10-06 18:47:20 +000016<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">
17 <modelVersion>4.0.0</modelVersion>
18 <groupId>edu.uci.ics.hyracks</groupId>
19 <artifactId>hyracks</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080020 <version>0.2.11-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000021 <packaging>pom</packaging>
buyingyi8d79d162012-10-22 23:04:47 +000022 <name>hyracks</name>
vinayakb0c860392012-10-06 18:47:20 +000023
24 <properties>
vinayakb1ca34f42013-03-25 03:17:01 +000025 <jvm.extraargs />
Chris Hillery08c72ab2014-01-31 00:03:40 -080026 <exclude.tests>edu.uci.ics.hyracks.test.infrastructure.SlowTest</exclude.tests>
vinayakb0c860392012-10-06 18:47:20 +000027 </properties>
28
Chris Hillery08c72ab2014-01-31 00:03:40 -080029 <profiles>
30 <profile>
31 <id>slow</id>
32 <properties>
33 <exclude.tests>java.lang.String</exclude.tests>
34 </properties>
35 </profile>
36 </profiles>
37
vinayakb0c860392012-10-06 18:47:20 +000038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-release-plugin</artifactId>
43 <version>2.0</version>
44 <configuration>
vinayakb4df31102013-04-06 18:28:48 +000045 <goals>package source:jar javadoc:jar deploy:deploy</goals>
vinayakb0c860392012-10-06 18:47:20 +000046 </configuration>
47 </plugin>
48 <plugin>
vinayakb4df31102013-04-06 18:28:48 +000049 <groupId>org.codehaus.mojo</groupId>
50 <artifactId>versions-maven-plugin</artifactId>
51 <version>1.2</version>
vinayakb0c860392012-10-06 18:47:20 +000052 </plugin>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-surefire-plugin</artifactId>
Chris Hillery08c72ab2014-01-31 00:03:40 -080056 <version>2.16</version>
57 <dependencies>
58 <dependency>
59 <groupId>org.apache.maven.surefire</groupId>
60 <artifactId>surefire-junit47</artifactId>
61 <version>2.16</version>
62 </dependency>
63 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +000064 <configuration>
vinayakb4df31102013-04-06 18:28:48 +000065 <forkMode>pertest</forkMode>
66 <argLine>-enableassertions -Djava.util.logging.config.file=${user.home}/logging.properties -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${jvm.extraargs} -Xmx2048m</argLine>
Chris Hillery08c72ab2014-01-31 00:03:40 -080067 <excludedGroups>${exclude.tests}</excludedGroups>
vinayakb0c860392012-10-06 18:47:20 +000068 </configuration>
69 </plugin>
70 </plugins>
71 </build>
72
vinayakbe3288f42012-10-29 15:39:22 +000073 <distributionManagement>
74 <repository>
75 <id>hyracks-releases</id>
76 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
77 </repository>
78 <snapshotRepository>
79 <id>hyracks-snapshots</id>
80 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
81 </snapshotRepository>
82 </distributionManagement>
83
vinayakb0c860392012-10-06 18:47:20 +000084 <repositories>
85 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -080086 <id>maven-central</id>
87 <url>http://repo1.maven.org/maven2/</url>
88 </repository>
89 <repository>
vinayakb0c860392012-10-06 18:47:20 +000090 <id>hyracks-public</id>
91 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
92 </repository>
93 <repository>
94 <id>jboss-public</id>
95 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
96 </repository>
97 </repositories>
98
99 <pluginRepositories>
100 <pluginRepository>
101 <id>hyracks-public</id>
102 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
103 <releases>
104 <updatePolicy>always</updatePolicy>
105 </releases>
106 </pluginRepository>
107 </pluginRepositories>
108
109 <modules>
110 <module>hyracks-ipc</module>
111 <module>hyracks-api</module>
buyingyi55df5212013-03-24 07:20:08 +0000112 <module>hyracks-comm</module>
113 <module>hyracks-client</module>
vinayakb0c860392012-10-06 18:47:20 +0000114 <module>hyracks-dataflow-common</module>
115 <module>hyracks-dataflow-std</module>
116 <module>hyracks-dataflow-hadoop</module>
117 <module>hyracks-control</module>
118 <module>hyracks-net</module>
119 <module>hyracks-data</module>
vinayakb0c860392012-10-06 18:47:20 +0000120 <module>hyracks-storage-common</module>
121 <module>hyracks-storage-am-common</module>
vinayakb4df31102013-04-06 18:28:48 +0000122 <module>hyracks-storage-am-bloomfilter</module>
vinayakb0c860392012-10-06 18:47:20 +0000123 <module>hyracks-storage-am-btree</module>
vinayakb4df31102013-04-06 18:28:48 +0000124 <module>hyracks-storage-am-lsm-invertedindex</module>
125 <module>hyracks-storage-am-lsm-common</module>
126 <module>hyracks-storage-am-lsm-btree</module>
127 <module>hyracks-storage-am-lsm-rtree</module>
vinayakb0c860392012-10-06 18:47:20 +0000128 <module>hyracks-storage-am-rtree</module>
129 <module>hyracks-test-support</module>
130 <module>hyracks-tests</module>
131 <module>hyracks-server</module>
132 <module>hyracks-examples</module>
133 <module>hyracks-documentation</module>
134 <module>hyracks-hadoop-compat</module>
vinayakb0c860392012-10-06 18:47:20 +0000135 <module>hyracks-maven-plugins</module>
buyingyi55df5212013-03-24 07:20:08 +0000136 <module>hyracks-hdfs</module>
137 <module>hyracks-dist</module>
vinayakb4df31102013-04-06 18:28:48 +0000138 <!--module>hyracks-yarn</module -->
vinayakb0c860392012-10-06 18:47:20 +0000139 </modules>
140</project>