blob: d94e9627e393a4c6d53df15b9d81d2cf88cc9825 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakbe5add8a2012-10-06 19:00:14 +000015
16<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>fullstack</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -070020 <version>0.2.14-SNAPSHOT</version>
vinayakbe5add8a2012-10-06 19:00:14 +000021 <packaging>pom</packaging>
buyingyi7f356c12012-10-07 00:23:17 +000022 <name>hyracks-ecosystem-full-stack</name>
vinayakbe5add8a2012-10-06 19:00:14 +000023
Chris Hillery4fc647c2014-02-13 14:49:58 -080024 <properties>
Ianeee859a2014-09-21 18:26:49 -070025 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Chris Hillery4fc647c2014-02-13 14:49:58 -080026 <jvm.extraargs />
Chris Hilleryc9d8f922014-03-06 01:44:19 -080027 <!-- Definition of tests in various categories which may be excluded -->
Yingyi Bu0622e8e2014-05-27 17:46:41 -070028 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
Chris Hillery1990ac32014-03-07 00:02:58 -080029 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
Chris Hilleryc48cc422014-03-21 22:47:23 -070030 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
31 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}</global.test.excludes>
Ianeee859a2014-09-21 18:26:49 -070032 <!-- Versions under dependencymanagement or used in many projects via properties -->
33 <hadoop.version>2.2.0</hadoop.version>
34 <junit.version>4.8.1</junit.version>
35 <commons.io.version>2.4</commons.io.version>
Chris Hillery4fc647c2014-02-13 14:49:58 -080036 </properties>
Chris Hilleryb531ce32014-02-20 16:39:25 -080037 <dependencyManagement>
38 <dependencies>
39 <dependency>
40 <groupId>junit</groupId>
41 <artifactId>junit</artifactId>
Ianeee859a2014-09-21 18:26:49 -070042 <version>${junit.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080043 </dependency>
Ianeee859a2014-09-21 18:26:49 -070044 <dependency>
45 <groupId>org.apache.hadoop</groupId>
46 <artifactId>hadoop-yarn-client</artifactId>
47 <version>${hadoop.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.apache.hadoop</groupId>
51 <artifactId>hadoop-client</artifactId>
52 <version>${hadoop.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>org.apache.hadoop</groupId>
56 <artifactId>hadoop-common</artifactId>
57 <version>${hadoop.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>org.apache.hadoop</groupId>
61 <artifactId>hadoop-hdfs</artifactId>
62 <version>${hadoop.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.hadoop</groupId>
66 <artifactId>hadoop-minicluster</artifactId>
67 <version>${hadoop.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.apache.hadoop</groupId>
71 <artifactId>hadoop-mapreduce-client-core</artifactId>
72 <version>${hadoop.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>commons-io</groupId>
76 <artifactId>commons-io</artifactId>
77 <version>${commons.io.version}</version>
78 </dependency>
Chris Hilleryb531ce32014-02-20 16:39:25 -080079 </dependencies>
80 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -080081
vinayakbe5add8a2012-10-06 19:00:14 +000082 <build>
83 <plugins>
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-release-plugin</artifactId>
vinayakba334a5c2012-10-29 13:41:20 +000087 <version>2.1</version>
vinayakbe5add8a2012-10-06 19:00:14 +000088 <configuration>
89 <goals>package source:jar javadoc:jar deploy:deploy</goals>
90 </configuration>
91 </plugin>
92 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -080093 <groupId>org.codehaus.mojo</groupId>
94 <artifactId>versions-maven-plugin</artifactId>
95 <version>1.2</version>
96 </plugin>
97 <plugin>
Chris Hilleryc9d8f922014-03-06 01:44:19 -080098 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-surefire-plugin</artifactId>
100 <version>2.16</version>
101 <configuration>
102 <failIfNoTests>false</failIfNoTests>
103 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800104 <reuseForks>false</reuseForks>
Chris Hillery069f9502014-03-06 01:49:40 -0800105 <argLine>-enableassertions -Xmx2048m
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800106 -Dfile.encoding=UTF-8
107 -Djava.util.logging.config.file=${user.home}/logging.properties
108 -Xdebug
109 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
110 <includes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700111 <include>${global.test.includes},${test.includes}</include>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800112 </includes>
113 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700114 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800115 </excludes>
116 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000117 </plugin>
118 </plugins>
119 </build>
120
121 <scm>
Vinayak Borkar721f3f12013-04-25 14:25:03 -0700122 <connection>scm:git:https://code.google.com/p/hyracks/</connection>
Ian Maxon7c48a952014-07-11 20:00:13 -0700123 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection>
Vinayak Borkar509af892013-04-25 09:59:16 -0700124 <url>https://code.google.com/p/hyracks/source/browse/</url>
vinayakbe5add8a2012-10-06 19:00:14 +0000125 </scm>
126
vinayakb8983d2b2012-10-29 11:04:49 +0000127 <distributionManagement>
128 <repository>
129 <id>hyracks-releases</id>
130 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
131 </repository>
132 <snapshotRepository>
133 <id>hyracks-snapshots</id>
134 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
135 </snapshotRepository>
136 </distributionManagement>
137
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800138 <profiles>
139 <profile>
140 <id>hanging-pregelix-tests</id>
141 <properties>
142 <hanging.pregelix.tests />
143 </properties>
144 </profile>
145 </profiles>
146
vinayakb8983d2b2012-10-29 11:04:49 +0000147 <repositories>
148 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -0800149 <id>maven-central</id>
150 <url>http://repo1.maven.org/maven2/</url>
151 </repository>
152 <repository>
vinayakb8983d2b2012-10-29 11:04:49 +0000153 <id>hyracks-public</id>
154 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
155 </repository>
156 <repository>
157 <id>jboss-public</id>
158 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
159 </repository>
160 </repositories>
161
162 <pluginRepositories>
163 <pluginRepository>
164 <id>hyracks-public</id>
165 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
166 <releases>
167 <updatePolicy>always</updatePolicy>
168 </releases>
169 </pluginRepository>
170 </pluginRepositories>
171
vinayakbe5add8a2012-10-06 19:00:14 +0000172 <modules>
173 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000174 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000175 </modules>
176</project>