blob: b6678d106956cdf29e02c50ba1667176e19b5b5a [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 Maxonb86e4392015-09-11 13:24:39 -070020 <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>
Ian Maxonc4821272015-08-21 16:08:01 -070023
24 <parent>
25 <groupId>org.apache</groupId>
26 <artifactId>apache</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070027 <version>LATEST</version>
Ian Maxonc4821272015-08-21 16:08:01 -070028 </parent>
29
Iane82f8112014-11-19 12:31:18 -080030 <licenses>
31 <license>
32 <name>Apache License, Version 2.0</name>
33 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
34 <distribution>repo</distribution>
35 <comments>A business-friendly OSS license</comments>
36 </license>
37 </licenses>
vinayakbe5add8a2012-10-06 19:00:14 +000038
Chris Hillery4fc647c2014-02-13 14:49:58 -080039 <properties>
Ianeee859a2014-09-21 18:26:49 -070040 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Chris Hillery4fc647c2014-02-13 14:49:58 -080041 <jvm.extraargs />
Chris Hilleryc9d8f922014-03-06 01:44:19 -080042 <!-- Definition of tests in various categories which may be excluded -->
Yingyi Bu0622e8e2014-05-27 17:46:41 -070043 <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests>
Chris Hillery1990ac32014-03-07 00:02:58 -080044 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
Chris Hilleryc48cc422014-03-21 22:47:23 -070045 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
46 <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests}</global.test.excludes>
Ianeee859a2014-09-21 18:26:49 -070047 <!-- Versions under dependencymanagement or used in many projects via properties -->
48 <hadoop.version>2.2.0</hadoop.version>
49 <junit.version>4.8.1</junit.version>
50 <commons.io.version>2.4</commons.io.version>
Chris Hillery4fc647c2014-02-13 14:49:58 -080051 </properties>
Chris Hilleryb531ce32014-02-20 16:39:25 -080052 <dependencyManagement>
53 <dependencies>
54 <dependency>
55 <groupId>junit</groupId>
56 <artifactId>junit</artifactId>
Ianeee859a2014-09-21 18:26:49 -070057 <version>${junit.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080058 </dependency>
Ianeee859a2014-09-21 18:26:49 -070059 <dependency>
60 <groupId>org.apache.hadoop</groupId>
61 <artifactId>hadoop-yarn-client</artifactId>
62 <version>${hadoop.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.hadoop</groupId>
66 <artifactId>hadoop-client</artifactId>
67 <version>${hadoop.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.apache.hadoop</groupId>
71 <artifactId>hadoop-common</artifactId>
72 <version>${hadoop.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.hadoop</groupId>
76 <artifactId>hadoop-hdfs</artifactId>
77 <version>${hadoop.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.hadoop</groupId>
81 <artifactId>hadoop-minicluster</artifactId>
82 <version>${hadoop.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.hadoop</groupId>
86 <artifactId>hadoop-mapreduce-client-core</artifactId>
87 <version>${hadoop.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>commons-io</groupId>
91 <artifactId>commons-io</artifactId>
92 <version>${commons.io.version}</version>
93 </dependency>
Chris Hilleryb531ce32014-02-20 16:39:25 -080094 </dependencies>
95 </dependencyManagement>
Chris Hillery4fc647c2014-02-13 14:49:58 -080096
vinayakbe5add8a2012-10-06 19:00:14 +000097 <build>
98 <plugins>
99 <plugin>
Chris Hillery4fc647c2014-02-13 14:49:58 -0800100 <groupId>org.codehaus.mojo</groupId>
101 <artifactId>versions-maven-plugin</artifactId>
102 <version>1.2</version>
103 </plugin>
104 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700105 <groupId>org.apache.rat</groupId>
106 <artifactId>apache-rat-plugin</artifactId>
107 <version>0.11</version>
108 <executions>
109 <execution>
110 <phase>verify</phase>
111 <goals>
112 <goal>check</goal>
113 </goals>
114 </execution>
115 </executions>
116 <configuration>
117 <licenses>
118 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
119 <licenseFamilyCategory>MIT</licenseFamilyCategory>
120 <licenseFamilyName>The MIT License</licenseFamilyName>
121 <notes>For JQuery MIT/GPL2 Dual License</notes>
122 <patterns>
123 <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern>
124 <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern>
125 <pattern>http://jquery.org/license</pattern>
126 <pattern>Dual licensed under the MIT</pattern>
127 <pattern>Released under the MIT license by IOLA, December 2007.</pattern>
128 </patterns>
129 </license>
130 </licenses>
131 <licenseFamilies>
132 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
133 <familyName>The MIT License</familyName>
134 </licenseFamily>
135 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
136 <familyName>Apache License Version 2.0</familyName>
137 </licenseFamily>
138 </licenseFamilies>
139 <excludes>
Ian Maxonec572922015-09-08 14:48:37 -0700140 <exclude>**/algebricks-tests/src/test/resources/results/**</exclude>
141 <exclude>**/javascript/flot/*.js</exclude>
142 <exclude>**/javascript/jsplumb/*.js</exclude>
143 <exclude>**/javascript/jquery/*.js</exclude>
144 <exclude>**/javascript/adminconsole/*.js</exclude>
145 <exclude>**/stylesheet/jquery-ui/**</exclude>
146 <exclude>**/hyracks-dist/src/main/resources/conf/**</exclude>
147 <exclude>**/src/test/resources/data/**</exclude>
148 <exclude>**/src/test/resources/results/**</exclude>
149 <exclude>**/src/test/resources/expected/**</exclude>
150 <exclude>**/testcases/*.piglet</exclude>
151 <exclude>**/data/**/*.txt</exclude>
152 <exclude>**/data/**/*.tbl</exclude>
153 <exclude>**/data/**/*.ddl</exclude>
154 <exclude>**/data/**/*.tsv</exclude>
155 <exclude>**/actual/conf.xml</exclude>
156 <exclude>**/actual/customer_result/part-*</exclude>
157 <exclude>**/src/main/resources/conf/*</exclude>
158 <exclude>**/data/dfs/**</exclude>
159 <exclude>**/invIndex*/**</exclude>
160 <exclude>**/*.job</exclude>
161 <exclude>**/*.conf</exclude>
162 <exclude>**/src/main/resources/*.cleaned</exclude>
163 <exclude>**/ClusterControllerService/**</exclude>
164 <exclude>**/output/**</exclude>
165 <exclude>**/*.iml</exclude>
166 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700167 </configuration>
168 </plugin>
169 <plugin>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800170 <groupId>org.apache.maven.plugins</groupId>
171 <artifactId>maven-surefire-plugin</artifactId>
172 <version>2.16</version>
173 <configuration>
174 <failIfNoTests>false</failIfNoTests>
175 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800176 <reuseForks>false</reuseForks>
Chris Hillery069f9502014-03-06 01:49:40 -0800177 <argLine>-enableassertions -Xmx2048m
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800178 -Dfile.encoding=UTF-8
179 -Djava.util.logging.config.file=${user.home}/logging.properties
180 -Xdebug
181 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
182 <includes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700183 <include>${global.test.includes},${test.includes}</include>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800184 </includes>
185 <excludes>
Chris Hilleryc48cc422014-03-21 22:47:23 -0700186 <exclude>${global.test.excludes},${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800187 </excludes>
188 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000189 </plugin>
Ian Maxona6b4b932015-09-01 09:23:18 -1000190 <plugin>
191 <groupId>org.apache.maven.plugins</groupId>
192 <artifactId>maven-assembly-plugin</artifactId>
193<!-- We override the configuration plugin to override the descriptor to use for building
194 the source release zip. Specifically, we would like to control the inclusions/exclusions.
195 For example, we exclude the KEYS file from the zip -->
196 <executions>
197 <execution>
198 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
199 the apache parent POM under the apache-release profile -->
200 <id>source-release-assembly</id>
201 <phase>package</phase>
202 <goals>
203 <goal>single</goal>
204 </goals>
205 <!-- combine.self should be override to replace the configuration in the parent POM -->
206 <configuration combine.self="override">
207 <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
208 <descriptors>
209 <descriptor>src/main/assembly/source.xml</descriptor>
210 </descriptors>
211 </configuration>
212 </execution>
213 </executions>
214 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000215 </plugins>
216 </build>
217
218 <scm>
Ian Maxonc4821272015-08-21 16:08:01 -0700219 <connection>scm:git:https://github.com/apache/incubator-asterixdb-hyracks</connection>
Ian Maxon7c48a952014-07-11 20:00:13 -0700220 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection>
Ian Maxonc4821272015-08-21 16:08:01 -0700221 <url>https://github.com/apache/incubator-asterixdb-hyracks</url>
vinayakbe5add8a2012-10-06 19:00:14 +0000222 </scm>
223
vinayakb8983d2b2012-10-29 11:04:49 +0000224
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800225 <profiles>
226 <profile>
227 <id>hanging-pregelix-tests</id>
228 <properties>
229 <hanging.pregelix.tests />
230 </properties>
231 </profile>
232 </profiles>
233
vinayakb8983d2b2012-10-29 11:04:49 +0000234 <repositories>
235 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -0800236 <id>maven-central</id>
237 <url>http://repo1.maven.org/maven2/</url>
238 </repository>
239 <repository>
vinayakb8983d2b2012-10-29 11:04:49 +0000240 <id>hyracks-public</id>
241 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
242 </repository>
243 <repository>
244 <id>jboss-public</id>
245 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
246 </repository>
247 </repositories>
248
249 <pluginRepositories>
250 <pluginRepository>
251 <id>hyracks-public</id>
252 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
253 <releases>
254 <updatePolicy>always</updatePolicy>
255 </releases>
256 </pluginRepository>
257 </pluginRepositories>
258
vinayakbe5add8a2012-10-06 19:00:14 +0000259 <modules>
260 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000261 <module>algebricks</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000262 </modules>
263</project>