blob: c51d8dd1646173d4f5ce2bd3af7be04a0f7b0422 [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>
Ian Maxone915e8c2015-07-01 17:03:31 -070018 <groupId>org.apache.hyracks</groupId>
vinayakbe5add8a2012-10-06 19:00:14 +000019 <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>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700107 <groupId>org.apache.rat</groupId>
108 <artifactId>apache-rat-plugin</artifactId>
109 <version>0.11</version>
110 <executions>
111 <execution>
112 <phase>verify</phase>
113 <goals>
114 <goal>check</goal>
115 </goals>
116 </execution>
117 </executions>
118 <configuration>
119 <licenses>
120 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
121 <licenseFamilyCategory>MIT</licenseFamilyCategory>
122 <licenseFamilyName>The MIT License</licenseFamilyName>
123 <notes>For JQuery MIT/GPL2 Dual License</notes>
124 <patterns>
125 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
126 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
127 <pattern>http://jquery.org/license</pattern>
128 <pattern>Dual licensed under the MIT</pattern>
129 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
130 </patterns>
131 </license>
132 </licenses>
133 <licenseFamilies>
134 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
135 <familyName>The MIT License</familyName>
136 </licenseFamily>
137 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
138 <familyName>Apache License Version 2.0</familyName>
139 </licenseFamily>
140 </licenseFamilies>
141 <excludes>
142 <exclude>**/dist.all*</exclude>
143 <exclude>**/data/file**</exclude>
144 <exclude>**/ClusterControllerService/*</exclude>
145 <exclude>**/*.txt</exclude>
146 <exclude>**/*.tbl</exclude>
147 <exclude>**/*.tsv</exclude>
148 <exclude>**/*.ddl</exclude>
149 <exclude>**/*.out</exclude>
150 <exclude>**/*.piglet</exclude>
151 <exclude>**/*.js</exclude>
152 <exclude>**/device_id_0/*</exclude>
153 <exclude>**/part-*</exclude>
154 <exclude>**/conf/local_cluster.conf</exclude>
155 <exclude>**/wordcount/wordcount.job</exclude>
156 <exclude>**/ClusterControllerService/**</exclude>
157 <exclude>**/*.log*</exclude>
158 <exclude>**/*.xml*</exclude>
159 <exclude>**/seen_txid</exclude>
160 <exclude>**/fsimage*</exclude>
161 <exclude>**/current/VERSION</exclude>
162 <exclude>**/blk_*</exclude>
163 <exclude>**/resources/conf/*</exclude>
Ian Maxone915e8c2015-07-01 17:03:31 -0700164 <exclude>**/target/*</exclude>
165 <exclude>**/*.iml</exclude>
166 <exclude>.*/*</exclude>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700167 </excludes>
168 </configuration>
169 </plugin>
170 <plugin>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800171 <groupId>org.apache.maven.plugins</groupId>
172 <artifactId>maven-surefire-plugin</artifactId>
173 <version>2.16</version>
174 <configuration>
175 <failIfNoTests>false</failIfNoTests>
176 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800177 <reuseForks>false</reuseForks>
Chris Hillery069f9502014-03-06 01:49:40 -0800178 <argLine>-enableassertions -Xmx2048m
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800179 -Dfile.encoding=UTF-8
180 -Djava.util.logging.config.file=${user.home}/logging.properties
181 -Xdebug
182 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
183 <includes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700184 <include>${global.test.includes},${test.includes}</include>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800185 </includes>
186 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700187 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800188 </excludes>
189 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000190 </plugin>
191 </plugins>
192 </build>
193
194 <scm>
Vinayak Borkar721f3f12013-04-25 14:25:03 -0700195 <connection>scm:git:https://code.google.com/p/hyracks/</connection>
Ian Maxon7c48a952014-07-11 20:00:13 -0700196 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection>
Vinayak Borkar509af892013-04-25 09:59:16 -0700197 <url>https://code.google.com/p/hyracks/source/browse/</url>
vinayakbe5add8a2012-10-06 19:00:14 +0000198 </scm>
199
vinayakb8983d2b2012-10-29 11:04:49 +0000200 <distributionManagement>
201 <repository>
202 <id>hyracks-releases</id>
203 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
204 </repository>
205 <snapshotRepository>
206 <id>hyracks-snapshots</id>
207 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
208 </snapshotRepository>
209 </distributionManagement>
210
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800211 <profiles>
212 <profile>
213 <id>hanging-pregelix-tests</id>
214 <properties>
215 <hanging.pregelix.tests />
216 </properties>
217 </profile>
218 </profiles>
219
vinayakb8983d2b2012-10-29 11:04:49 +0000220 <repositories>
221 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -0800222 <id>maven-central</id>
223 <url>http://repo1.maven.org/maven2/</url>
224 </repository>
225 <repository>
vinayakb8983d2b2012-10-29 11:04:49 +0000226 <id>hyracks-public</id>
227 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
228 </repository>
229 <repository>
230 <id>jboss-public</id>
231 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
232 </repository>
233 </repositories>
234
235 <pluginRepositories>
236 <pluginRepository>
237 <id>hyracks-public</id>
238 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
239 <releases>
240 <updatePolicy>always</updatePolicy>
241 </releases>
242 </pluginRepository>
243 </pluginRepositories>
244
vinayakbe5add8a2012-10-06 19:00:14 +0000245 <modules>
246 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000247 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000248 </modules>
249</project>