blob: 90f80a1634aba88f569457a02629c39bd90ee45e [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
JavierJia26c3b532015-10-23 13:49:32 -070021<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24 <groupId>org.apache.hyracks</groupId>
25 <artifactId>fullstack</artifactId>
26 <version>0.2.17-SNAPSHOT</version>
27 <packaging>pom</packaging>
28 <name>hyracks-ecosystem-full-stack</name>
Ian Maxonc4821272015-08-21 16:08:01 -070029
JavierJia26c3b532015-10-23 13:49:32 -070030 <parent>
31 <groupId>org.apache</groupId>
32 <artifactId>apache</artifactId>
33 <version>LATEST</version>
34 </parent>
Ian Maxonc4821272015-08-21 16:08:01 -070035
JavierJia26c3b532015-10-23 13:49:32 -070036 <licenses>
37 <license>
38 <name>Apache License, Version 2.0</name>
39 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
40 <distribution>repo</distribution>
41 <comments>A business-friendly OSS license</comments>
42 </license>
43 </licenses>
vinayakbe5add8a2012-10-06 19:00:14 +000044
JavierJia26c3b532015-10-23 13:49:32 -070045 <properties>
46 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Ian Maxoned5825d2015-12-09 12:35:33 -080047 <jdk.version>1.8</jdk.version>
JavierJia26c3b532015-10-23 13:49:32 -070048 <jvm.extraargs/>
49 <!-- Definition of tests in various categories which may be excluded -->
50 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
51 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
52 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
53 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}
54 </global.test.excludes>
55 <!-- Versions under dependencymanagement or used in many projects via properties -->
56 <hadoop.version>2.2.0</hadoop.version>
57 <junit.version>4.8.1</junit.version>
58 <commons.io.version>2.4</commons.io.version>
59 </properties>
60 <dependencyManagement>
61 <dependencies>
62 <dependency>
63 <groupId>junit</groupId>
64 <artifactId>junit</artifactId>
65 <version>${junit.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>org.apache.hadoop</groupId>
69 <artifactId>hadoop-yarn-client</artifactId>
70 <version>${hadoop.version}</version>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.hadoop</groupId>
74 <artifactId>hadoop-client</artifactId>
75 <version>${hadoop.version}</version>
76 </dependency>
77 <dependency>
78 <groupId>org.apache.hadoop</groupId>
79 <artifactId>hadoop-common</artifactId>
80 <version>${hadoop.version}</version>
81 </dependency>
82 <dependency>
83 <groupId>org.apache.hadoop</groupId>
84 <artifactId>hadoop-hdfs</artifactId>
85 <version>${hadoop.version}</version>
86 </dependency>
87 <dependency>
88 <groupId>org.apache.hadoop</groupId>
89 <artifactId>hadoop-minicluster</artifactId>
90 <version>${hadoop.version}</version>
91 </dependency>
92 <dependency>
93 <groupId>org.apache.hadoop</groupId>
94 <artifactId>hadoop-mapreduce-client-core</artifactId>
95 <version>${hadoop.version}</version>
96 </dependency>
97 <dependency>
98 <groupId>commons-io</groupId>
99 <artifactId>commons-io</artifactId>
100 <version>${commons.io.version}</version>
101 </dependency>
102 </dependencies>
103 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800104
vinayakbe5add8a2012-10-06 19:00:14 +0000105 <build>
106 <plugins>
107 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800108 <groupId>org.codehaus.mojo</groupId>
109 <artifactId>versions-maven-plugin</artifactId>
110 <version>1.2</version>
111 </plugin>
112 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700113 <groupId>org.apache.rat</groupId>
114 <artifactId>apache-rat-plugin</artifactId>
115 <version>0.11</version>
116 <executions>
117 <execution>
118 <phase>verify</phase>
119 <goals>
120 <goal>check</goal>
121 </goals>
122 </execution>
123 </executions>
124 <configuration>
125 <licenses>
126 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
127 <licenseFamilyCategory>MIT</licenseFamilyCategory>
128 <licenseFamilyName>The MIT License</licenseFamilyName>
129 <notes>For JQuery MIT/GPL2 Dual License</notes>
130 <patterns>
131 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
132 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
133 <pattern>http://jquery.org/license</pattern>
134 <pattern>Dual licensed under the MIT</pattern>
135 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
136 </patterns>
137 </license>
138 </licenses>
139 <licenseFamilies>
140 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
141 <familyName>The MIT License</familyName>
142 </licenseFamily>
143 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
144 <familyName>Apache License Version 2.0</familyName>
145 </licenseFamily>
146 </licenseFamilies>
147 <excludes>
Ian Maxonec572922015-09-08 14:48:37 -0700148 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
149 <exclude>**/javascript/flot/*.js</exclude>
150 <exclude>**/javascript/jsplumb/*.js</exclude>
151 <exclude>**/javascript/jquery/*.js</exclude>
152 <exclude>**/javascript/adminconsole/*.js</exclude>
153 <exclude>**/stylesheet/jquery-ui/**</exclude>
154 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
155 <exclude>**/src/test/resources/data/**</exclude>
156 <exclude>**/src/test/resources/results/**</exclude>
157 <exclude>**/src/test/resources/expected/**</exclude>
158 <exclude>**/testcases/*.piglet</exclude>
159 <exclude>**/data/**/*.txt</exclude>
160 <exclude>**/data/**/*.tbl</exclude>
161 <exclude>**/data/**/*.ddl</exclude>
162 <exclude>**/data/**/*.tsv</exclude>
163 <exclude>**/actual/conf.xml</exclude>
164 <exclude>**/actual/customer_result/part-*</exclude>
165 <exclude>**/src/main/resources/conf/*</exclude>
166 <exclude>**/data/dfs/**</exclude>
167 <exclude>**/invIndex*/**</exclude>
168 <exclude>**/*.job</exclude>
169 <exclude>**/*.conf</exclude>
170 <exclude>**/src/main/resources/*.cleaned</exclude>
171 <exclude>**/ClusterControllerService/**</exclude>
JavierJia26c3b532015-10-23 13:49:32 -0700172 <exclude>**/target/**</exclude>
Ian Maxonec572922015-09-08 14:48:37 -0700173 <exclude>**/output/**</exclude>
174 <exclude>**/*.iml</exclude>
Abdullah Alamoudif6b9f1f2016-01-02 12:55:12 +0300175 <exclude>**/*.prefs</exclude>
176 <exclude>**/.classpath</exclude>
177 <exclude>**/.project</exclude>
Ian Maxonec572922015-09-08 14:48:37 -0700178 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700179 </configuration>
180 </plugin>
181 <plugin>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800182 <groupId>org.apache.maven.plugins</groupId>
183 <artifactId>maven-surefire-plugin</artifactId>
184 <version>2.16</version>
185 <configuration>
186 <failIfNoTests>false</failIfNoTests>
187 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800188 <reuseForks>false</reuseForks>
Chris Hillery069f9502014-03-06 01:49:40 -0800189 <argLine>-enableassertions -Xmx2048m
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800190 -Dfile.encoding=UTF-8
191 -Djava.util.logging.config.file=${user.home}/logging.properties
192 -Xdebug
193 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
194 <includes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700195 <include>${global.test.includes},${test.includes}</include>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800196 </includes>
197 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700198 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800199 </excludes>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700200 </configuration>
201 </plugin>
202 <plugin>
203 <groupId>org.apache.maven.plugins</groupId>
204 <artifactId>maven-assembly-plugin</artifactId>
205 <!-- We override the configuration plugin to override the descriptor to use for building
206 the source release zip. Specifically, we would like to control the inclusions/exclusions.
207 For example, we exclude the KEYS file from the zip -->
208 <executions>
209 <execution>
210 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
211 the apache parent POM under the apache-release profile -->
212 <id>source-release-assembly</id>
213 <phase>package</phase>
214 <goals>
215 <goal>single</goal>
216 </goals>
217 <!-- combine.self should be override to replace the configuration in the parent POM -->
218 <configuration combine.self="override">
219 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
220 <descriptors>
221 <descriptor>src/main/assembly/source.xml</descriptor>
222 </descriptors>
223 </configuration>
224 </execution>
225 </executions>
226 </plugin>
227 <plugin>
228 <groupId>org.apache.maven.plugins</groupId>
229 <artifactId>maven-compiler-plugin</artifactId>
230 <version>3.1</version>
231 <configuration>
232 <source>${jdk.version}</source>
233 <target>${jdk.version}</target>
234 <compilerArgument>-Xlint:all</compilerArgument>
235 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000236 </plugin>
237 </plugins>
238 </build>
239
240 <scm>
Ian Maxonc4821272015-08-21 16:08:01 -0700241 <connection>scm:git:https://github.com/apache/incubator-asterixdb-hyracks</connection>
Ian Maxon7c48a952014-07-11 20:00:13 -0700242 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection>
Ian Maxonc4821272015-08-21 16:08:01 -0700243 <url>https://github.com/apache/incubator-asterixdb-hyracks</url>
Ian Maxond4daeb42015-09-15 14:31:32 -0700244 <tag>HEAD</tag>
vinayakbe5add8a2012-10-06 19:00:14 +0000245 </scm>
246
vinayakb8983d2b2012-10-29 11:04:49 +0000247
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800248 <profiles>
249 <profile>
250 <id>hanging-pregelix-tests</id>
251 <properties>
252 <hanging.pregelix.tests />
253 </properties>
254 </profile>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700255 <profile>
256 <id>asterix-release</id>
257 <build>
258 <plugins>
259 <plugin>
260 <groupId>org.apache.maven.plugins</groupId>
261 <artifactId>maven-assembly-plugin</artifactId>
262 <!-- We override the configuration plugin to override the descriptor to use for building
263 the source release zip. Specifically, we would like to control the inclusions/exclusions.
264 For example, we exclude the KEYS file from the zip -->
265 <executions>
266 <execution>
267 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
268 the apache parent POM under the apache-release profile -->
269 <id>source-release-assembly</id>
270 <phase>package</phase>
271 <goals>
272 <goal>single</goal>
273 </goals>
274 <!-- combine.self should be override to replace the configuration in the parent POM -->
275 <configuration combine.self="override">
276 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
277 <descriptors>
278 <descriptor>src/main/assembly/source.xml</descriptor>
279 </descriptors>
280 </configuration>
281 </execution>
282 </executions>
283 </plugin>
284 </plugins>
285 </build>
286 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700287 <profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700288 <id>java8</id>
289 <activation>
290 <jdk>1.8</jdk>
291 </activation>
292 <properties>
293 <jdk.version>1.8</jdk.version>
294 </properties>
295 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800296 </profiles>
297
vinayakb8983d2b2012-10-29 11:04:49 +0000298 <repositories>
299 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -0800300 <id>maven-central</id>
301 <url>http://repo1.maven.org/maven2/</url>
302 </repository>
303 <repository>
vinayakb8983d2b2012-10-29 11:04:49 +0000304 <id>hyracks-public</id>
305 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
306 </repository>
307 <repository>
308 <id>jboss-public</id>
309 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
310 </repository>
311 </repositories>
312
313 <pluginRepositories>
314 <pluginRepository>
315 <id>hyracks-public</id>
316 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
317 <releases>
318 <updatePolicy>always</updatePolicy>
319 </releases>
320 </pluginRepository>
321 </pluginRepositories>
322
vinayakbe5add8a2012-10-06 19:00:14 +0000323 <modules>
324 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000325 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000326 </modules>
327</project>