blob: c0f097f4516e80f9dfbb01a4bd60ff7780b7214e [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070018 !-->
vinayakbe5add8a2012-10-06 19:00:14 +000019
Ian Maxond8857792015-09-11 14:19:53 -070020
vinayakbe5add8a2012-10-06 19:00:14 +000021<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">
22 <modelVersion>4.0.0</modelVersion>
Ian Maxone915e8c2015-07-01 17:03:31 -070023 <groupId>org.apache.hyracks</groupId>
vinayakbe5add8a2012-10-06 19:00:14 +000024 <artifactId>fullstack</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -070025 <version>0.2.17-SNAPSHOT</version>
vinayakbe5add8a2012-10-06 19:00:14 +000026 <packaging>pom</packaging>
buyingyi7f356c12012-10-07 00:23:17 +000027 <name>hyracks-ecosystem-full-stack</name>
Ian Maxonc4821272015-08-21 16:08:01 -070028
29 <parent>
30 <groupId>org.apache</groupId>
31 <artifactId>apache</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -070032 <version>LATEST</version>
Ian Maxonc4821272015-08-21 16:08:01 -070033 </parent>
34
Iane82f8112014-11-19 12:31:18 -080035 <licenses>
36 <license>
37 <name>Apache License, Version 2.0</name>
38 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
39 <distribution>repo</distribution>
40 <comments>A business-friendly OSS license</comments>
41 </license>
42 </licenses>
vinayakbe5add8a2012-10-06 19:00:14 +000043
Chris Hillery4fc647c2014-02-13 14:49:58 -080044 <properties>
Ianeee859a2014-09-21 18:26:49 -070045 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Chris Hillery4fc647c2014-02-13 14:49:58 -080046 <jvm.extraargs />
Chris Hilleryc9d8f922014-03-06 01:44:19 -080047 <!-- Definition of tests in various categories which may be excluded -->
Yingyi Bu0622e8e2014-05-27 17:46:41 -070048 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
Chris Hillery1990ac32014-03-07 00:02:58 -080049 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
Chris Hilleryc48cc422014-03-21 22:47:23 -070050 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
51 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}</global.test.excludes>
Ianeee859a2014-09-21 18:26:49 -070052 <!-- Versions under dependencymanagement or used in many projects via properties -->
53 <hadoop.version>2.2.0</hadoop.version>
54 <junit.version>4.8.1</junit.version>
55 <commons.io.version>2.4</commons.io.version>
Chris Hillery4fc647c2014-02-13 14:49:58 -080056 </properties>
Chris Hilleryb531ce32014-02-20 16:39:25 -080057 <dependencyManagement>
58 <dependencies>
59 <dependency>
60 <groupId>junit</groupId>
61 <artifactId>junit</artifactId>
Ianeee859a2014-09-21 18:26:49 -070062 <version>${junit.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080063 </dependency>
Ianeee859a2014-09-21 18:26:49 -070064 <dependency>
65 <groupId>org.apache.hadoop</groupId>
66 <artifactId>hadoop-yarn-client</artifactId>
67 <version>${hadoop.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.apache.hadoop</groupId>
71 <artifactId>hadoop-client</artifactId>
72 <version>${hadoop.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.hadoop</groupId>
76 <artifactId>hadoop-common</artifactId>
77 <version>${hadoop.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.hadoop</groupId>
81 <artifactId>hadoop-hdfs</artifactId>
82 <version>${hadoop.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.hadoop</groupId>
86 <artifactId>hadoop-minicluster</artifactId>
87 <version>${hadoop.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.hadoop</groupId>
91 <artifactId>hadoop-mapreduce-client-core</artifactId>
92 <version>${hadoop.version}</version>
93 </dependency>
94 <dependency>
95 <groupId>commons-io</groupId>
96 <artifactId>commons-io</artifactId>
97 <version>${commons.io.version}</version>
98 </dependency>
Chris Hilleryb531ce32014-02-20 16:39:25 -080099 </dependencies>
100 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800101
vinayakbe5add8a2012-10-06 19:00:14 +0000102 <build>
103 <plugins>
104 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800105 <groupId>org.codehaus.mojo</groupId>
106 <artifactId>versions-maven-plugin</artifactId>
107 <version>1.2</version>
108 </plugin>
109 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700110 <groupId>org.apache.rat</groupId>
111 <artifactId>apache-rat-plugin</artifactId>
112 <version>0.11</version>
113 <executions>
114 <execution>
115 <phase>verify</phase>
116 <goals>
117 <goal>check</goal>
118 </goals>
119 </execution>
120 </executions>
121 <configuration>
122 <licenses>
123 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
124 <licenseFamilyCategory>MIT</licenseFamilyCategory>
125 <licenseFamilyName>The MIT License</licenseFamilyName>
126 <notes>For JQuery MIT/GPL2 Dual License</notes>
127 <patterns>
128 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
129 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
130 <pattern>http://jquery.org/license</pattern>
131 <pattern>Dual licensed under the MIT</pattern>
132 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
133 </patterns>
134 </license>
135 </licenses>
136 <licenseFamilies>
137 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
138 <familyName>The MIT License</familyName>
139 </licenseFamily>
140 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
141 <familyName>Apache License Version 2.0</familyName>
142 </licenseFamily>
143 </licenseFamilies>
144 <excludes>
Ian Maxonec572922015-09-08 14:48:37 -0700145 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
146 <exclude>**/javascript/flot/*.js</exclude>
147 <exclude>**/javascript/jsplumb/*.js</exclude>
148 <exclude>**/javascript/jquery/*.js</exclude>
149 <exclude>**/javascript/adminconsole/*.js</exclude>
150 <exclude>**/stylesheet/jquery-ui/**</exclude>
151 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
152 <exclude>**/src/test/resources/data/**</exclude>
153 <exclude>**/src/test/resources/results/**</exclude>
154 <exclude>**/src/test/resources/expected/**</exclude>
155 <exclude>**/testcases/*.piglet</exclude>
156 <exclude>**/data/**/*.txt</exclude>
157 <exclude>**/data/**/*.tbl</exclude>
158 <exclude>**/data/**/*.ddl</exclude>
159 <exclude>**/data/**/*.tsv</exclude>
160 <exclude>**/actual/conf.xml</exclude>
161 <exclude>**/actual/customer_result/part-*</exclude>
162 <exclude>**/src/main/resources/conf/*</exclude>
163 <exclude>**/data/dfs/**</exclude>
164 <exclude>**/invIndex*/**</exclude>
165 <exclude>**/*.job</exclude>
166 <exclude>**/*.conf</exclude>
167 <exclude>**/src/main/resources/*.cleaned</exclude>
168 <exclude>**/ClusterControllerService/**</exclude>
169 <exclude>**/output/**</exclude>
170 <exclude>**/*.iml</exclude>
171 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700172 </configuration>
173 </plugin>
174 <plugin>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800175 <groupId>org.apache.maven.plugins</groupId>
176 <artifactId>maven-surefire-plugin</artifactId>
177 <version>2.16</version>
178 <configuration>
179 <failIfNoTests>false</failIfNoTests>
180 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800181 <reuseForks>false</reuseForks>
Chris Hillery069f9502014-03-06 01:49:40 -0800182 <argLine>-enableassertions -Xmx2048m
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800183 -Dfile.encoding=UTF-8
184 -Djava.util.logging.config.file=${user.home}/logging.properties
185 -Xdebug
186 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
187 <includes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700188 <include>${global.test.includes},${test.includes}</include>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800189 </includes>
190 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700191 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800192 </excludes>
193 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000194 </plugin>
Ian Maxona6b4b932015-09-01 09:23:18 -1000195 <plugin>
196 <groupId>org.apache.maven.plugins</groupId>
197 <artifactId>maven-assembly-plugin</artifactId>
198<!-- We override the configuration plugin to override the descriptor to use for building
199 the source release zip. Specifically, we would like to control the inclusions/exclusions.
200 For example, we exclude the KEYS file from the zip -->
201 <executions>
202 <execution>
203 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
204 the apache parent POM under the apache-release profile -->
205 <id>source-release-assembly</id>
206 <phase>package</phase>
207 <goals>
208 <goal>single</goal>
209 </goals>
210 <!-- combine.self should be override to replace the configuration in the parent POM -->
211 <configuration combine.self="override">
212 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
213 <descriptors>
214 <descriptor>src/main/assembly/source.xml</descriptor>
215 </descriptors>
216 </configuration>
217 </execution>
218 </executions>
219 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000220 </plugins>
221 </build>
222
223 <scm>
Ian Maxonc4821272015-08-21 16:08:01 -0700224 <connection>scm:git:https://github.com/apache/incubator-asterixdb-hyracks</connection>
Ian Maxon7c48a952014-07-11 20:00:13 -0700225 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection>
Ian Maxonc4821272015-08-21 16:08:01 -0700226 <url>https://github.com/apache/incubator-asterixdb-hyracks</url>
Ian Maxond4daeb42015-09-15 14:31:32 -0700227 <tag>HEAD</tag>
vinayakbe5add8a2012-10-06 19:00:14 +0000228 </scm>
229
vinayakb8983d2b2012-10-29 11:04:49 +0000230
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800231 <profiles>
232 <profile>
233 <id>hanging-pregelix-tests</id>
234 <properties>
235 <hanging.pregelix.tests />
236 </properties>
237 </profile>
238 </profiles>
239
vinayakb8983d2b2012-10-29 11:04:49 +0000240 <repositories>
241 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -0800242 <id>maven-central</id>
243 <url>http://repo1.maven.org/maven2/</url>
244 </repository>
245 <repository>
vinayakb8983d2b2012-10-29 11:04:49 +0000246 <id>hyracks-public</id>
247 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
248 </repository>
249 <repository>
250 <id>jboss-public</id>
251 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
252 </repository>
253 </repositories>
254
255 <pluginRepositories>
256 <pluginRepository>
257 <id>hyracks-public</id>
258 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
259 <releases>
260 <updatePolicy>always</updatePolicy>
261 </releases>
262 </pluginRepository>
263 </pluginRepositories>
264
vinayakbe5add8a2012-10-06 19:00:14 +0000265 <modules>
266 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000267 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000268 </modules>
269</project>