Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
| 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 | !--> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 15 | |
| 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 Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 18 | <groupId>org.apache.hyracks</groupId> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 19 | <artifactId>fullstack</artifactId> |
Ian Maxon | 1b4d08e | 2015-09-08 12:21:29 -0700 | [diff] [blame] | 20 | <version>0.2.16-SNAPSHOT</version> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 21 | <packaging>pom</packaging> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 22 | <name>hyracks-ecosystem-full-stack</name> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 23 | |
| 24 | <parent> |
| 25 | <groupId>org.apache</groupId> |
| 26 | <artifactId>apache</artifactId> |
Ian Maxon | 1b4d08e | 2015-09-08 12:21:29 -0700 | [diff] [blame] | 27 | <version>LATEST</version> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 28 | </parent> |
| 29 | |
Ian | e82f811 | 2014-11-19 12:31:18 -0800 | [diff] [blame] | 30 | <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> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 38 | |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 39 | <properties> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 40 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 41 | <jvm.extraargs /> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 42 | <!-- Definition of tests in various categories which may be excluded --> |
Yingyi Bu | 0622e8e | 2014-05-27 17:46:41 -0700 | [diff] [blame] | 43 | <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests> |
Chris Hillery | 1990ac3 | 2014-03-07 00:02:58 -0800 | [diff] [blame] | 44 | <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests> |
Chris Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 45 | <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> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 47 | <!-- 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 Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 51 | </properties> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 52 | <dependencyManagement> |
| 53 | <dependencies> |
| 54 | <dependency> |
| 55 | <groupId>junit</groupId> |
| 56 | <artifactId>junit</artifactId> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 57 | <version>${junit.version}</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 58 | </dependency> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 59 | <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 Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 94 | </dependencies> |
| 95 | </dependencyManagement> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 96 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 97 | <build> |
| 98 | <plugins> |
| 99 | <plugin> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 100 | <groupId>org.codehaus.mojo</groupId> |
| 101 | <artifactId>versions-maven-plugin</artifactId> |
| 102 | <version>1.2</version> |
| 103 | </plugin> |
| 104 | <plugin> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 105 | <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 Maxon | ec57292 | 2015-09-08 14:48:37 -0700 | [diff] [blame^] | 140 | <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 Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 167 | </configuration> |
| 168 | </plugin> |
| 169 | <plugin> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 170 | <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 Hillery | d2c1a8a | 2014-02-21 01:03:02 -0800 | [diff] [blame] | 176 | <reuseForks>false</reuseForks> |
Chris Hillery | 069f950 | 2014-03-06 01:49:40 -0800 | [diff] [blame] | 177 | <argLine>-enableassertions -Xmx2048m |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 178 | -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 Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 183 | <include>${global.test.includes},${test.includes}</include> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 184 | </includes> |
| 185 | <excludes> |
Chris Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 186 | <exclude>${global.test.excludes},${test.excludes}</exclude> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 187 | </excludes> |
| 188 | </configuration> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 189 | </plugin> |
Ian Maxon | a6b4b93 | 2015-09-01 09:23:18 -1000 | [diff] [blame] | 190 | <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> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 215 | </plugins> |
| 216 | </build> |
| 217 | |
| 218 | <scm> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 219 | <connection>scm:git:https://github.com/apache/incubator-asterixdb-hyracks</connection> |
Ian Maxon | 7c48a95 | 2014-07-11 20:00:13 -0700 | [diff] [blame] | 220 | <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 221 | <url>https://github.com/apache/incubator-asterixdb-hyracks</url> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 222 | </scm> |
| 223 | |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 224 | |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 225 | <profiles> |
| 226 | <profile> |
| 227 | <id>hanging-pregelix-tests</id> |
| 228 | <properties> |
| 229 | <hanging.pregelix.tests /> |
| 230 | </properties> |
| 231 | </profile> |
| 232 | </profiles> |
| 233 | |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 234 | <repositories> |
| 235 | <repository> |
Vinayak Borkar | 29502a0 | 2013-12-11 11:18:27 -0800 | [diff] [blame] | 236 | <id>maven-central</id> |
| 237 | <url>http://repo1.maven.org/maven2/</url> |
| 238 | </repository> |
| 239 | <repository> |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 240 | <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 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 259 | <modules> |
| 260 | <module>hyracks</module> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 261 | <module>algebricks</module> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 262 | </modules> |
| 263 | </project> |