blob: 8f00aace592a5bb85951af7ad5dc00dcd933f7fc [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>
Ian Maxon5ae0df82015-10-14 10:45:19 -070049 <jdk.version>1.8</jdk.version>
Chris Hillery1990ac32014-03-07 00:02:58 -080050 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
Chris Hilleryc48cc422014-03-21 22:47:23 -070051 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
52 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}</global.test.excludes>
Ianeee859a2014-09-21 18:26:49 -070053 <!-- Versions under dependencymanagement or used in many projects via properties -->
54 <hadoop.version>2.2.0</hadoop.version>
55 <junit.version>4.8.1</junit.version>
56 <commons.io.version>2.4</commons.io.version>
Chris Hillery4fc647c2014-02-13 14:49:58 -080057 </properties>
Chris Hilleryb531ce32014-02-20 16:39:25 -080058 <dependencyManagement>
59 <dependencies>
60 <dependency>
61 <groupId>junit</groupId>
62 <artifactId>junit</artifactId>
Ianeee859a2014-09-21 18:26:49 -070063 <version>${junit.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080064 </dependency>
Ianeee859a2014-09-21 18:26:49 -070065 <dependency>
66 <groupId>org.apache.hadoop</groupId>
67 <artifactId>hadoop-yarn-client</artifactId>
68 <version>${hadoop.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.apache.hadoop</groupId>
72 <artifactId>hadoop-client</artifactId>
73 <version>${hadoop.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>org.apache.hadoop</groupId>
77 <artifactId>hadoop-common</artifactId>
78 <version>${hadoop.version}</version>
79 </dependency>
80 <dependency>
81 <groupId>org.apache.hadoop</groupId>
82 <artifactId>hadoop-hdfs</artifactId>
83 <version>${hadoop.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>org.apache.hadoop</groupId>
87 <artifactId>hadoop-minicluster</artifactId>
88 <version>${hadoop.version}</version>
89 </dependency>
90 <dependency>
91 <groupId>org.apache.hadoop</groupId>
92 <artifactId>hadoop-mapreduce-client-core</artifactId>
93 <version>${hadoop.version}</version>
94 </dependency>
95 <dependency>
96 <groupId>commons-io</groupId>
97 <artifactId>commons-io</artifactId>
98 <version>${commons.io.version}</version>
99 </dependency>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800100 </dependencies>
101 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800102
vinayakbe5add8a2012-10-06 19:00:14 +0000103 <build>
104 <plugins>
105 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800106 <groupId>org.codehaus.mojo</groupId>
107 <artifactId>versions-maven-plugin</artifactId>
108 <version>1.2</version>
109 </plugin>
110 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700111 <groupId>org.apache.rat</groupId>
112 <artifactId>apache-rat-plugin</artifactId>
113 <version>0.11</version>
114 <executions>
115 <execution>
116 <phase>verify</phase>
117 <goals>
118 <goal>check</goal>
119 </goals>
120 </execution>
121 </executions>
122 <configuration>
123 <licenses>
124 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
125 <licenseFamilyCategory>MIT</licenseFamilyCategory>
126 <licenseFamilyName>The MIT License</licenseFamilyName>
127 <notes>For JQuery MIT/GPL2 Dual License</notes>
128 <patterns>
129 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
130 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
131 <pattern>http://jquery.org/license</pattern>
132 <pattern>Dual licensed under the MIT</pattern>
133 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
134 </patterns>
135 </license>
136 </licenses>
137 <licenseFamilies>
138 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
139 <familyName>The MIT License</familyName>
140 </licenseFamily>
141 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
142 <familyName>Apache License Version 2.0</familyName>
143 </licenseFamily>
144 </licenseFamilies>
145 <excludes>
Ian Maxonec572922015-09-08 14:48:37 -0700146 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
147 <exclude>**/javascript/flot/*.js</exclude>
148 <exclude>**/javascript/jsplumb/*.js</exclude>
149 <exclude>**/javascript/jquery/*.js</exclude>
150 <exclude>**/javascript/adminconsole/*.js</exclude>
151 <exclude>**/stylesheet/jquery-ui/**</exclude>
152 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
153 <exclude>**/src/test/resources/data/**</exclude>
154 <exclude>**/src/test/resources/results/**</exclude>
155 <exclude>**/src/test/resources/expected/**</exclude>
156 <exclude>**/testcases/*.piglet</exclude>
157 <exclude>**/data/**/*.txt</exclude>
158 <exclude>**/data/**/*.tbl</exclude>
159 <exclude>**/data/**/*.ddl</exclude>
160 <exclude>**/data/**/*.tsv</exclude>
161 <exclude>**/actual/conf.xml</exclude>
162 <exclude>**/actual/customer_result/part-*</exclude>
163 <exclude>**/src/main/resources/conf/*</exclude>
164 <exclude>**/data/dfs/**</exclude>
165 <exclude>**/invIndex*/**</exclude>
166 <exclude>**/*.job</exclude>
167 <exclude>**/*.conf</exclude>
168 <exclude>**/src/main/resources/*.cleaned</exclude>
169 <exclude>**/ClusterControllerService/**</exclude>
170 <exclude>**/output/**</exclude>
171 <exclude>**/*.iml</exclude>
172 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700173 </configuration>
174 </plugin>
175 <plugin>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800176 <groupId>org.apache.maven.plugins</groupId>
177 <artifactId>maven-surefire-plugin</artifactId>
178 <version>2.16</version>
179 <configuration>
180 <failIfNoTests>false</failIfNoTests>
181 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800182 <reuseForks>false</reuseForks>
Chris Hillery069f9502014-03-06 01:49:40 -0800183 <argLine>-enableassertions -Xmx2048m
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800184 -Dfile.encoding=UTF-8
185 -Djava.util.logging.config.file=${user.home}/logging.properties
186 -Xdebug
187 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
188 <includes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700189 <include>${global.test.includes},${test.includes}</include>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800190 </includes>
191 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700192 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800193 </excludes>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700194 </configuration>
195 </plugin>
196 <plugin>
197 <groupId>org.apache.maven.plugins</groupId>
198 <artifactId>maven-assembly-plugin</artifactId>
199 <!-- We override the configuration plugin to override the descriptor to use for building
200 the source release zip. Specifically, we would like to control the inclusions/exclusions.
201 For example, we exclude the KEYS file from the zip -->
202 <executions>
203 <execution>
204 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
205 the apache parent POM under the apache-release profile -->
206 <id>source-release-assembly</id>
207 <phase>package</phase>
208 <goals>
209 <goal>single</goal>
210 </goals>
211 <!-- combine.self should be override to replace the configuration in the parent POM -->
212 <configuration combine.self="override">
213 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
214 <descriptors>
215 <descriptor>src/main/assembly/source.xml</descriptor>
216 </descriptors>
217 </configuration>
218 </execution>
219 </executions>
220 </plugin>
221 <plugin>
222 <groupId>org.apache.maven.plugins</groupId>
223 <artifactId>maven-compiler-plugin</artifactId>
224 <version>3.1</version>
225 <configuration>
226 <source>${jdk.version}</source>
227 <target>${jdk.version}</target>
228 <compilerArgument>-Xlint:all</compilerArgument>
229 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000230 </plugin>
231 </plugins>
232 </build>
233
234 <scm>
Ian Maxonc4821272015-08-21 16:08:01 -0700235 <connection>scm:git:https://github.com/apache/incubator-asterixdb-hyracks</connection>
Ian Maxon7c48a952014-07-11 20:00:13 -0700236 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection>
Ian Maxonc4821272015-08-21 16:08:01 -0700237 <url>https://github.com/apache/incubator-asterixdb-hyracks</url>
Ian Maxond4daeb42015-09-15 14:31:32 -0700238 <tag>HEAD</tag>
vinayakbe5add8a2012-10-06 19:00:14 +0000239 </scm>
240
vinayakb8983d2b2012-10-29 11:04:49 +0000241
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800242 <profiles>
243 <profile>
244 <id>hanging-pregelix-tests</id>
245 <properties>
246 <hanging.pregelix.tests />
247 </properties>
248 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700249 <profile>
250 <id>asterix-release</id>
251 <build>
252 <plugins>
253 <plugin>
254 <groupId>org.apache.maven.plugins</groupId>
255 <artifactId>maven-assembly-plugin</artifactId>
256 <!-- We override the configuration plugin to override the descriptor to use for building
257 the source release zip. Specifically, we would like to control the inclusions/exclusions.
258 For example, we exclude the KEYS file from the zip -->
259 <executions>
260 <execution>
261 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
262 the apache parent POM under the apache-release profile -->
263 <id>source-release-assembly</id>
264 <phase>package</phase>
265 <goals>
266 <goal>single</goal>
267 </goals>
268 <!-- combine.self should be override to replace the configuration in the parent POM -->
269 <configuration combine.self="override">
270 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
271 <descriptors>
272 <descriptor>src/main/assembly/source.xml</descriptor>
273 </descriptors>
274 </configuration>
275 </execution>
276 </executions>
277 </plugin>
278 </plugins>
279 </build>
280 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700281 <profile>
282 <id>java6</id>
283 <activation>
284 <jdk>1.6</jdk>
285 </activation>
286 <properties>
287 <jdk.version>1.6</jdk.version>
288 </properties>
289 </profile>
290 <profile>
291 <id>java7</id>
292 <activation>
293 <jdk>1.7</jdk>
294 </activation>
295 <properties>
296 <jdk.version>1.7</jdk.version>
297 </properties>
298 </profile>
299 <profile>
300 <id>java8</id>
301 <activation>
302 <jdk>1.8</jdk>
303 </activation>
304 <properties>
305 <jdk.version>1.8</jdk.version>
306 </properties>
307 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800308 </profiles>
309
vinayakb8983d2b2012-10-29 11:04:49 +0000310 <repositories>
311 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -0800312 <id>maven-central</id>
313 <url>http://repo1.maven.org/maven2/</url>
314 </repository>
315 <repository>
vinayakb8983d2b2012-10-29 11:04:49 +0000316 <id>hyracks-public</id>
317 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
318 </repository>
319 <repository>
320 <id>jboss-public</id>
321 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
322 </repository>
323 </repositories>
324
325 <pluginRepositories>
326 <pluginRepository>
327 <id>hyracks-public</id>
328 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
329 <releases>
330 <updatePolicy>always</updatePolicy>
331 </releases>
332 </pluginRepository>
333 </pluginRepositories>
334
vinayakbe5add8a2012-10-06 19:00:14 +0000335 <modules>
336 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000337 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000338 </modules>
339</project>