blob: 3b6b244bd9d3140e5d65cf92c85a6a03864f89a6 [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 Maxon97acfe52015-02-17 20:47:20 -080020 <version>0.2.16-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>
Iane82f8112014-11-19 12:31:18 -080023
24 <licenses>
25 <license>
26 <name>Apache License, Version 2.0</name>
27 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
28 <distribution>repo</distribution>
29 <comments>A business-friendly OSS license</comments>
30 </license>
31 </licenses>
vinayakbe5add8a2012-10-06 19:00:14 +000032
Chris Hillery4fc647c2014-02-13 14:49:58 -080033 <properties>
Ianeee859a2014-09-21 18:26:49 -070034 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Chris Hillery4fc647c2014-02-13 14:49:58 -080035 <jvm.extraargs />
Chris Hilleryc9d8f922014-03-06 01:44:19 -080036 <!-- Definition of tests in various categories which may be excluded -->
Yingyi Bu0622e8e2014-05-27 17:46:41 -070037 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
Chris Hillery1990ac32014-03-07 00:02:58 -080038 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
Chris Hilleryc48cc422014-03-21 22:47:23 -070039 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
40 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}</global.test.excludes>
Ianeee859a2014-09-21 18:26:49 -070041 <!-- Versions under dependencymanagement or used in many projects via properties -->
42 <hadoop.version>2.2.0</hadoop.version>
43 <junit.version>4.8.1</junit.version>
44 <commons.io.version>2.4</commons.io.version>
Chris Hillery4fc647c2014-02-13 14:49:58 -080045 </properties>
Chris Hilleryb531ce32014-02-20 16:39:25 -080046 <dependencyManagement>
47 <dependencies>
48 <dependency>
49 <groupId>junit</groupId>
50 <artifactId>junit</artifactId>
Ianeee859a2014-09-21 18:26:49 -070051 <version>${junit.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080052 </dependency>
Ianeee859a2014-09-21 18:26:49 -070053 <dependency>
54 <groupId>org.apache.hadoop</groupId>
55 <artifactId>hadoop-yarn-client</artifactId>
56 <version>${hadoop.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.hadoop</groupId>
60 <artifactId>hadoop-client</artifactId>
61 <version>${hadoop.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>org.apache.hadoop</groupId>
65 <artifactId>hadoop-common</artifactId>
66 <version>${hadoop.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>org.apache.hadoop</groupId>
70 <artifactId>hadoop-hdfs</artifactId>
71 <version>${hadoop.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>org.apache.hadoop</groupId>
75 <artifactId>hadoop-minicluster</artifactId>
76 <version>${hadoop.version}</version>
77 </dependency>
78 <dependency>
79 <groupId>org.apache.hadoop</groupId>
80 <artifactId>hadoop-mapreduce-client-core</artifactId>
81 <version>${hadoop.version}</version>
82 </dependency>
83 <dependency>
84 <groupId>commons-io</groupId>
85 <artifactId>commons-io</artifactId>
86 <version>${commons.io.version}</version>
87 </dependency>
Chris Hilleryb531ce32014-02-20 16:39:25 -080088 </dependencies>
89 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -080090
vinayakbe5add8a2012-10-06 19:00:14 +000091 <build>
92 <plugins>
93 <plugin>
94 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-release-plugin</artifactId>
vinayakba334a5c2012-10-29 13:41:20 +000096 <version>2.1</version>
vinayakbe5add8a2012-10-06 19:00:14 +000097 <configuration>
98 <goals>package source:jar javadoc:jar deploy:deploy</goals>
99 </configuration>
100 </plugin>
101 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800102 <groupId>org.codehaus.mojo</groupId>
103 <artifactId>versions-maven-plugin</artifactId>
104 <version>1.2</version>
105 </plugin>
106 <plugin>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-surefire-plugin</artifactId>
109 <version>2.16</version>
110 <configuration>
111 <failIfNoTests>false</failIfNoTests>
112 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800113 <reuseForks>false</reuseForks>
Chris Hillery069f9502014-03-06 01:49:40 -0800114 <argLine>-enableassertions -Xmx2048m
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800115 -Dfile.encoding=UTF-8
116 -Djava.util.logging.config.file=${user.home}/logging.properties
117 -Xdebug
118 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
119 <includes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700120 <include>${global.test.includes},${test.includes}</include>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800121 </includes>
122 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700123 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800124 </excludes>
125 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000126 </plugin>
127 </plugins>
128 </build>
129
130 <scm>
Vinayak Borkar721f3f12013-04-25 14:25:03 -0700131 <connection>scm:git:https://code.google.com/p/hyracks/</connection>
Ian Maxon7c48a952014-07-11 20:00:13 -0700132 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection>
Vinayak Borkar509af892013-04-25 09:59:16 -0700133 <url>https://code.google.com/p/hyracks/source/browse/</url>
vinayakbe5add8a2012-10-06 19:00:14 +0000134 </scm>
135
vinayakb8983d2b2012-10-29 11:04:49 +0000136 <distributionManagement>
137 <repository>
138 <id>hyracks-releases</id>
139 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
140 </repository>
141 <snapshotRepository>
142 <id>hyracks-snapshots</id>
143 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
144 </snapshotRepository>
145 </distributionManagement>
146
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800147 <profiles>
148 <profile>
149 <id>hanging-pregelix-tests</id>
150 <properties>
151 <hanging.pregelix.tests />
152 </properties>
153 </profile>
154 </profiles>
155
vinayakb8983d2b2012-10-29 11:04:49 +0000156 <repositories>
157 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -0800158 <id>maven-central</id>
159 <url>http://repo1.maven.org/maven2/</url>
160 </repository>
161 <repository>
vinayakb8983d2b2012-10-29 11:04:49 +0000162 <id>hyracks-public</id>
163 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
164 </repository>
165 <repository>
166 <id>jboss-public</id>
167 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
168 </repository>
169 </repositories>
170
171 <pluginRepositories>
172 <pluginRepository>
173 <id>hyracks-public</id>
174 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
175 <releases>
176 <updatePolicy>always</updatePolicy>
177 </releases>
178 </pluginRepository>
179 </pluginRepositories>
180
vinayakbe5add8a2012-10-06 19:00:14 +0000181 <modules>
182 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000183 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000184 </modules>
185</project>