Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 2 | ! 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 Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 18 | !--> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 19 | |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 20 | |
JavierJia | 26c3b53 | 2015-10-23 13:49:32 -0700 | [diff] [blame] | 21 | <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 Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 29 | |
JavierJia | 26c3b53 | 2015-10-23 13:49:32 -0700 | [diff] [blame] | 30 | <parent> |
| 31 | <groupId>org.apache</groupId> |
| 32 | <artifactId>apache</artifactId> |
| 33 | <version>LATEST</version> |
| 34 | </parent> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 35 | |
JavierJia | 26c3b53 | 2015-10-23 13:49:32 -0700 | [diff] [blame] | 36 | <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> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 44 | |
JavierJia | 26c3b53 | 2015-10-23 13:49:32 -0700 | [diff] [blame] | 45 | <properties> |
| 46 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Ian Maxon | ed5825d | 2015-12-09 12:35:33 -0800 | [diff] [blame] | 47 | <jdk.version>1.8</jdk.version> |
JavierJia | 26c3b53 | 2015-10-23 13:49:32 -0700 | [diff] [blame] | 48 | <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 Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 104 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 105 | <build> |
| 106 | <plugins> |
| 107 | <plugin> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 108 | <groupId>org.codehaus.mojo</groupId> |
| 109 | <artifactId>versions-maven-plugin</artifactId> |
| 110 | <version>1.2</version> |
| 111 | </plugin> |
| 112 | <plugin> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 113 | <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 Maxon | ec57292 | 2015-09-08 14:48:37 -0700 | [diff] [blame] | 148 | <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> |
Ian Maxon | ec57292 | 2015-09-08 14:48:37 -0700 | [diff] [blame] | 159 | <exclude>**/data/**/*.tbl</exclude> |
| 160 | <exclude>**/data/**/*.ddl</exclude> |
| 161 | <exclude>**/data/**/*.tsv</exclude> |
| 162 | <exclude>**/actual/conf.xml</exclude> |
| 163 | <exclude>**/actual/customer_result/part-*</exclude> |
| 164 | <exclude>**/src/main/resources/conf/*</exclude> |
| 165 | <exclude>**/data/dfs/**</exclude> |
| 166 | <exclude>**/invIndex*/**</exclude> |
| 167 | <exclude>**/*.job</exclude> |
| 168 | <exclude>**/*.conf</exclude> |
| 169 | <exclude>**/src/main/resources/*.cleaned</exclude> |
| 170 | <exclude>**/ClusterControllerService/**</exclude> |
JavierJia | 26c3b53 | 2015-10-23 13:49:32 -0700 | [diff] [blame] | 171 | <exclude>**/target/**</exclude> |
Ian Maxon | ec57292 | 2015-09-08 14:48:37 -0700 | [diff] [blame] | 172 | <exclude>**/output/**</exclude> |
Jianfeng Jia | 6abc63e | 2016-02-25 18:28:20 -0800 | [diff] [blame] | 173 | <exclude>**/target/**</exclude> |
Ian Maxon | ec57292 | 2015-09-08 14:48:37 -0700 | [diff] [blame] | 174 | <exclude>**/*.iml</exclude> |
Abdullah Alamoudi | f6b9f1f | 2016-01-02 12:55:12 +0300 | [diff] [blame] | 175 | <exclude>**/*.prefs</exclude> |
Abdullah Alamoudi | 7dabc19 | 2016-03-16 01:58:46 +0300 | [diff] [blame^] | 176 | <exclude>**/data/*.txt</exclude> |
| 177 | <exclude>**/data/**/*.txt</exclude> |
Abdullah Alamoudi | f6b9f1f | 2016-01-02 12:55:12 +0300 | [diff] [blame] | 178 | <exclude>**/.classpath</exclude> |
| 179 | <exclude>**/.project</exclude> |
Ian Maxon | ec57292 | 2015-09-08 14:48:37 -0700 | [diff] [blame] | 180 | </excludes> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 181 | </configuration> |
| 182 | </plugin> |
| 183 | <plugin> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 184 | <groupId>org.apache.maven.plugins</groupId> |
| 185 | <artifactId>maven-surefire-plugin</artifactId> |
| 186 | <version>2.16</version> |
| 187 | <configuration> |
| 188 | <failIfNoTests>false</failIfNoTests> |
| 189 | <forkCount>1</forkCount> |
Chris Hillery | d2c1a8a | 2014-02-21 01:03:02 -0800 | [diff] [blame] | 190 | <reuseForks>false</reuseForks> |
Chris Hillery | 069f950 | 2014-03-06 01:49:40 -0800 | [diff] [blame] | 191 | <argLine>-enableassertions -Xmx2048m |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 192 | -Dfile.encoding=UTF-8 |
| 193 | -Djava.util.logging.config.file=${user.home}/logging.properties |
| 194 | -Xdebug |
| 195 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
| 196 | <includes> |
Chris Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 197 | <include>${global.test.includes},${test.includes}</include> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 198 | </includes> |
| 199 | <excludes> |
Chris Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 200 | <exclude>${global.test.excludes},${test.excludes}</exclude> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 201 | </excludes> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 202 | </configuration> |
| 203 | </plugin> |
| 204 | <plugin> |
| 205 | <groupId>org.apache.maven.plugins</groupId> |
| 206 | <artifactId>maven-assembly-plugin</artifactId> |
| 207 | <!-- We override the configuration plugin to override the descriptor to use for building |
| 208 | the source release zip. Specifically, we would like to control the inclusions/exclusions. |
| 209 | For example, we exclude the KEYS file from the zip --> |
| 210 | <executions> |
| 211 | <execution> |
| 212 | <!-- Use this id to match the id mentioned in the assembly plugin configuration in |
| 213 | the apache parent POM under the apache-release profile --> |
| 214 | <id>source-release-assembly</id> |
| 215 | <phase>package</phase> |
| 216 | <goals> |
| 217 | <goal>single</goal> |
| 218 | </goals> |
| 219 | <!-- combine.self should be override to replace the configuration in the parent POM --> |
| 220 | <configuration combine.self="override"> |
| 221 | <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> |
| 222 | <descriptors> |
| 223 | <descriptor>src/main/assembly/source.xml</descriptor> |
| 224 | </descriptors> |
| 225 | </configuration> |
| 226 | </execution> |
| 227 | </executions> |
| 228 | </plugin> |
| 229 | <plugin> |
| 230 | <groupId>org.apache.maven.plugins</groupId> |
| 231 | <artifactId>maven-compiler-plugin</artifactId> |
| 232 | <version>3.1</version> |
| 233 | <configuration> |
| 234 | <source>${jdk.version}</source> |
| 235 | <target>${jdk.version}</target> |
| 236 | <compilerArgument>-Xlint:all</compilerArgument> |
| 237 | </configuration> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 238 | </plugin> |
| 239 | </plugins> |
| 240 | </build> |
| 241 | |
| 242 | <scm> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 243 | <connection>scm:git:https://github.com/apache/incubator-asterixdb-hyracks</connection> |
Ian Maxon | 7c48a95 | 2014-07-11 20:00:13 -0700 | [diff] [blame] | 244 | <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 245 | <url>https://github.com/apache/incubator-asterixdb-hyracks</url> |
Ian Maxon | d4daeb4 | 2015-09-15 14:31:32 -0700 | [diff] [blame] | 246 | <tag>HEAD</tag> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 247 | </scm> |
| 248 | |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 249 | |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 250 | <profiles> |
| 251 | <profile> |
| 252 | <id>hanging-pregelix-tests</id> |
| 253 | <properties> |
| 254 | <hanging.pregelix.tests /> |
| 255 | </properties> |
| 256 | </profile> |
Chris Hillery | 1fda6bc | 2015-10-02 17:18:11 -0700 | [diff] [blame] | 257 | <profile> |
| 258 | <id>asterix-release</id> |
| 259 | <build> |
| 260 | <plugins> |
| 261 | <plugin> |
| 262 | <groupId>org.apache.maven.plugins</groupId> |
| 263 | <artifactId>maven-assembly-plugin</artifactId> |
| 264 | <!-- We override the configuration plugin to override the descriptor to use for building |
| 265 | the source release zip. Specifically, we would like to control the inclusions/exclusions. |
| 266 | For example, we exclude the KEYS file from the zip --> |
| 267 | <executions> |
| 268 | <execution> |
| 269 | <!-- Use this id to match the id mentioned in the assembly plugin configuration in |
| 270 | the apache parent POM under the apache-release profile --> |
| 271 | <id>source-release-assembly</id> |
| 272 | <phase>package</phase> |
| 273 | <goals> |
| 274 | <goal>single</goal> |
| 275 | </goals> |
| 276 | <!-- combine.self should be override to replace the configuration in the parent POM --> |
| 277 | <configuration combine.self="override"> |
| 278 | <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> |
| 279 | <descriptors> |
| 280 | <descriptor>src/main/assembly/source.xml</descriptor> |
| 281 | </descriptors> |
| 282 | </configuration> |
| 283 | </execution> |
| 284 | </executions> |
| 285 | </plugin> |
| 286 | </plugins> |
| 287 | </build> |
| 288 | </profile> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 289 | <profile> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 290 | <id>java8</id> |
| 291 | <activation> |
| 292 | <jdk>1.8</jdk> |
| 293 | </activation> |
| 294 | <properties> |
| 295 | <jdk.version>1.8</jdk.version> |
| 296 | </properties> |
| 297 | </profile> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 298 | </profiles> |
| 299 | |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 300 | <repositories> |
| 301 | <repository> |
Vinayak Borkar | 29502a0 | 2013-12-11 11:18:27 -0800 | [diff] [blame] | 302 | <id>maven-central</id> |
| 303 | <url>http://repo1.maven.org/maven2/</url> |
| 304 | </repository> |
| 305 | <repository> |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 306 | <id>hyracks-public</id> |
| 307 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 308 | </repository> |
| 309 | <repository> |
| 310 | <id>jboss-public</id> |
| 311 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 312 | </repository> |
| 313 | </repositories> |
| 314 | |
| 315 | <pluginRepositories> |
| 316 | <pluginRepository> |
| 317 | <id>hyracks-public</id> |
| 318 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 319 | <releases> |
| 320 | <updatePolicy>always</updatePolicy> |
| 321 | </releases> |
| 322 | </pluginRepository> |
| 323 | </pluginRepositories> |
| 324 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 325 | <modules> |
| 326 | <module>hyracks</module> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 327 | <module>algebricks</module> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 328 | </modules> |
| 329 | </project> |