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 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 21 | <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 Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 23 | <groupId>org.apache.hyracks</groupId> |
Ian Maxon | 2378ed6 | 2015-11-24 13:04:19 -0800 | [diff] [blame] | 24 | <artifactId>apache-asterixdb-hyracks</artifactId> |
Ian Maxon | 14be946 | 2016-02-10 14:55:42 -0800 | [diff] [blame] | 25 | <version>0.2.18-SNAPSHOT</version> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 26 | <packaging>pom</packaging> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 27 | <name>hyracks-ecosystem-full-stack</name> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 28 | |
JavierJia | 26c3b53 | 2015-10-23 13:49:32 -0700 | [diff] [blame] | 29 | <parent> |
| 30 | <groupId>org.apache</groupId> |
| 31 | <artifactId>apache</artifactId> |
| 32 | <version>LATEST</version> |
| 33 | </parent> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 34 | |
JavierJia | 26c3b53 | 2015-10-23 13:49:32 -0700 | [diff] [blame] | 35 | <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> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 43 | |
JavierJia | 26c3b53 | 2015-10-23 13:49:32 -0700 | [diff] [blame] | 44 | <properties> |
| 45 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Ian Maxon | ed5825d | 2015-12-09 12:35:33 -0800 | [diff] [blame] | 46 | <jdk.version>1.8</jdk.version> |
JavierJia | 26c3b53 | 2015-10-23 13:49:32 -0700 | [diff] [blame] | 47 | <jvm.extraargs/> |
| 48 | <!-- Definition of tests in various categories which may be excluded --> |
| 49 | <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests> |
| 50 | <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests> |
| 51 | <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes> |
| 52 | <global.test.excludes>**/Abstract*.java,${hanging.pregelix.tests},${hivesterix.perf.tests} |
| 53 | </global.test.excludes> |
| 54 | <!-- Versions under dependencymanagement or used in many projects via properties --> |
| 55 | <hadoop.version>2.2.0</hadoop.version> |
| 56 | <junit.version>4.8.1</junit.version> |
| 57 | <commons.io.version>2.4</commons.io.version> |
| 58 | </properties> |
| 59 | <dependencyManagement> |
| 60 | <dependencies> |
| 61 | <dependency> |
| 62 | <groupId>junit</groupId> |
| 63 | <artifactId>junit</artifactId> |
| 64 | <version>${junit.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.apache.hadoop</groupId> |
| 68 | <artifactId>hadoop-yarn-client</artifactId> |
| 69 | <version>${hadoop.version}</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.apache.hadoop</groupId> |
| 73 | <artifactId>hadoop-client</artifactId> |
| 74 | <version>${hadoop.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.apache.hadoop</groupId> |
| 78 | <artifactId>hadoop-common</artifactId> |
| 79 | <version>${hadoop.version}</version> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.apache.hadoop</groupId> |
| 83 | <artifactId>hadoop-hdfs</artifactId> |
| 84 | <version>${hadoop.version}</version> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.apache.hadoop</groupId> |
| 88 | <artifactId>hadoop-minicluster</artifactId> |
| 89 | <version>${hadoop.version}</version> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.apache.hadoop</groupId> |
| 93 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
| 94 | <version>${hadoop.version}</version> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>commons-io</groupId> |
| 98 | <artifactId>commons-io</artifactId> |
| 99 | <version>${commons.io.version}</version> |
| 100 | </dependency> |
| 101 | </dependencies> |
| 102 | </dependencyManagement> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 103 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 104 | <build> |
| 105 | <plugins> |
| 106 | <plugin> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 107 | <groupId>org.codehaus.mojo</groupId> |
| 108 | <artifactId>versions-maven-plugin</artifactId> |
| 109 | <version>1.2</version> |
| 110 | </plugin> |
| 111 | <plugin> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 112 | <groupId>org.apache.rat</groupId> |
| 113 | <artifactId>apache-rat-plugin</artifactId> |
| 114 | <version>0.11</version> |
| 115 | <executions> |
| 116 | <execution> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 117 | <phase>validate</phase> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 118 | <goals> |
| 119 | <goal>check</goal> |
| 120 | </goals> |
| 121 | </execution> |
| 122 | </executions> |
| 123 | <configuration> |
| 124 | <licenses> |
| 125 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 126 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 127 | <licenseFamilyName>The MIT License</licenseFamilyName> |
| 128 | <notes>For JQuery MIT/GPL2 Dual License</notes> |
| 129 | <patterns> |
| 130 | <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern> |
| 131 | <pattern>Dual licensed under the MIT and GPL2 licenses.</pattern> |
| 132 | <pattern>http://jquery.org/license</pattern> |
| 133 | <pattern>Dual licensed under the MIT</pattern> |
| 134 | <pattern>Released under the MIT license by IOLA, December 2007.</pattern> |
| 135 | </patterns> |
| 136 | </license> |
| 137 | </licenses> |
| 138 | <licenseFamilies> |
| 139 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 140 | <familyName>The MIT License</familyName> |
| 141 | </licenseFamily> |
| 142 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 143 | <familyName>Apache License Version 2.0</familyName> |
| 144 | </licenseFamily> |
| 145 | </licenseFamilies> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 146 | <excludeSubProjects>false</excludeSubProjects> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 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 | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 180 | <exclude>**/target/**</exclude> |
Ian Maxon | ec57292 | 2015-09-08 14:48:37 -0700 | [diff] [blame] | 181 | <exclude>**/*.iml</exclude> |
Ian Maxon | bb5dc4c | 2016-02-02 18:16:30 -0800 | [diff] [blame] | 182 | <exclude>**/.classpath</exclude> |
| 183 | <exclude>**/.project</exclude> |
| 184 | <exclude>**/.settings/**</exclude> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 185 | <exclude>algebricks/algebricks-examples/piglet-example/testcases/*.piglet</exclude> |
| 186 | <exclude>algebricks/algebricks-tests/ClusterControllerService/logs/jobs/*.log</exclude> |
| 187 | <exclude>algebricks/algebricks-tests/data/simple/*.tbl</exclude> |
| 188 | <exclude>algebricks/algebricks-tests/data/tpch0.001/*.tbl</exclude> |
| 189 | <exclude>algebricks/algebricks-tests/data/tpch0.001/tpch.ddl</exclude> |
| 190 | <exclude>algebricks/algebricks-tests/src/test/resources/results/scanMicroSortWrite.out</exclude> |
| 191 | <exclude>ClusterControllerService/logs/jobs/*.log</exclude> |
| 192 | <exclude>hyracks/hyracks-client/ClusterControllerService/logs/jobs/*.log</exclude> |
| 193 | <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/flot/*.js</exclude> |
| 194 | <exclude>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jsplumb/jquery.jsPlumb-1.3.5-all-min.js</exclude> |
| 195 | <exclude>hyracks/hyracks-dist/src/main/resources/conf/master</exclude> |
| 196 | <exclude>hyracks/hyracks-dist/src/main/resources/conf/slaves</exclude> |
| 197 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/*.txt</exclude> |
| 198 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/*.tbl</exclude> |
| 199 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/tpch0.001/tpch.ddl</exclude> |
| 200 | <exclude>hyracks/hyracks-examples/hyracks-integration-tests/data/wordcount.tsv</exclude> |
| 201 | <exclude>hyracks/hyracks-examples/text-example/textserver/data/*.txt</exclude> |
| 202 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/conf.xml</exclude> |
| 203 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/actual/customer_result/part-0</exclude> |
| 204 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/build/test/data/dfs/**</exclude> |
| 205 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/ClusterControllerService/logs/jobs/*.log</exclude> |
| 206 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/data/customer.tbl</exclude> |
| 207 | <exclude>hyracks/hyracks-hdfs/hyracks-hdfs-core/src/test/resources/expected/part-0</exclude> |
| 208 | <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.first.cleaned</exclude> |
| 209 | <exclude>hyracks/hyracks-storage-am-common/src/main/resources/dist.all.last.cleaned</exclude> |
Ian Maxon | ec57292 | 2015-09-08 14:48:37 -0700 | [diff] [blame] | 210 | </excludes> |
Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 211 | </configuration> |
| 212 | </plugin> |
| 213 | <plugin> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 214 | <groupId>org.apache.maven.plugins</groupId> |
| 215 | <artifactId>maven-surefire-plugin</artifactId> |
| 216 | <version>2.16</version> |
| 217 | <configuration> |
| 218 | <failIfNoTests>false</failIfNoTests> |
| 219 | <forkCount>1</forkCount> |
Chris Hillery | d2c1a8a | 2014-02-21 01:03:02 -0800 | [diff] [blame] | 220 | <reuseForks>false</reuseForks> |
Chris Hillery | 069f950 | 2014-03-06 01:49:40 -0800 | [diff] [blame] | 221 | <argLine>-enableassertions -Xmx2048m |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 222 | -Dfile.encoding=UTF-8 |
| 223 | -Djava.util.logging.config.file=${user.home}/logging.properties |
| 224 | -Xdebug |
| 225 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
| 226 | <includes> |
Chris Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 227 | <include>${global.test.includes},${test.includes}</include> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 228 | </includes> |
| 229 | <excludes> |
Chris Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 230 | <exclude>${global.test.excludes},${test.excludes}</exclude> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 231 | </excludes> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 232 | </configuration> |
| 233 | </plugin> |
| 234 | <plugin> |
| 235 | <groupId>org.apache.maven.plugins</groupId> |
| 236 | <artifactId>maven-assembly-plugin</artifactId> |
| 237 | <!-- We override the configuration plugin to override the descriptor to use for building |
| 238 | the source release zip. Specifically, we would like to control the inclusions/exclusions. |
| 239 | For example, we exclude the KEYS file from the zip --> |
| 240 | <executions> |
| 241 | <execution> |
| 242 | <!-- Use this id to match the id mentioned in the assembly plugin configuration in |
| 243 | the apache parent POM under the apache-release profile --> |
| 244 | <id>source-release-assembly</id> |
| 245 | <phase>package</phase> |
| 246 | <goals> |
| 247 | <goal>single</goal> |
| 248 | </goals> |
| 249 | <!-- combine.self should be override to replace the configuration in the parent POM --> |
| 250 | <configuration combine.self="override"> |
| 251 | <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> |
| 252 | <descriptors> |
| 253 | <descriptor>src/main/assembly/source.xml</descriptor> |
| 254 | </descriptors> |
| 255 | </configuration> |
| 256 | </execution> |
| 257 | </executions> |
| 258 | </plugin> |
| 259 | <plugin> |
| 260 | <groupId>org.apache.maven.plugins</groupId> |
| 261 | <artifactId>maven-compiler-plugin</artifactId> |
| 262 | <version>3.1</version> |
| 263 | <configuration> |
| 264 | <source>${jdk.version}</source> |
| 265 | <target>${jdk.version}</target> |
| 266 | <compilerArgument>-Xlint:all</compilerArgument> |
| 267 | </configuration> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 268 | </plugin> |
Ian Maxon | b165aca | 2016-03-17 18:21:57 -0700 | [diff] [blame^] | 269 | <plugin> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 270 | <artifactId>maven-resources-plugin</artifactId> |
| 271 | <version>2.7</version> |
| 272 | <executions> |
| 273 | <execution> |
| 274 | <id>copy-resources</id> |
| 275 | <phase>validate</phase> |
| 276 | <goals> |
| 277 | <goal>copy-resources</goal> |
| 278 | </goals> |
| 279 | <configuration> |
| 280 | <outputDirectory>target</outputDirectory> |
| 281 | <resources> |
| 282 | <resource> |
| 283 | <directory>${root.dir}/src/main/appended-resources</directory> |
| 284 | <!-- <filtering>true</filtering> --> |
| 285 | </resource> |
| 286 | </resources> |
| 287 | </configuration> |
| 288 | </execution> |
| 289 | </executions> |
| 290 | </plugin> |
| 291 | <plugin> |
| 292 | <groupId>org.apache.maven.plugins</groupId> |
| 293 | <artifactId>maven-remote-resources-plugin</artifactId> |
| 294 | <executions> |
| 295 | <execution> |
| 296 | <goals> |
| 297 | <goal>process</goal> |
| 298 | </goals> |
| 299 | <configuration> |
| 300 | <resourceBundles combine.children="append"> |
| 301 | <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle> |
| 302 | <resourceBundle>org.apache:apache-incubator-disclaimer-resource-bundle:1.1</resourceBundle> |
| 303 | </resourceBundles> |
| 304 | </configuration> |
| 305 | </execution> |
| 306 | </executions> |
| 307 | </plugin> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 308 | </plugins> |
| 309 | </build> |
| 310 | |
| 311 | <scm> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 312 | <connection>scm:git:https://github.com/apache/incubator-asterixdb-hyracks</connection> |
Ian Maxon | 7c48a95 | 2014-07-11 20:00:13 -0700 | [diff] [blame] | 313 | <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection> |
Ian Maxon | c482127 | 2015-08-21 16:08:01 -0700 | [diff] [blame] | 314 | <url>https://github.com/apache/incubator-asterixdb-hyracks</url> |
Ian Maxon | d4daeb4 | 2015-09-15 14:31:32 -0700 | [diff] [blame] | 315 | <tag>HEAD</tag> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 316 | </scm> |
| 317 | |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 318 | |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 319 | <profiles> |
| 320 | <profile> |
| 321 | <id>hanging-pregelix-tests</id> |
| 322 | <properties> |
| 323 | <hanging.pregelix.tests /> |
| 324 | </properties> |
| 325 | </profile> |
Chris Hillery | 1fda6bc | 2015-10-02 17:18:11 -0700 | [diff] [blame] | 326 | <profile> |
| 327 | <id>asterix-release</id> |
| 328 | <build> |
| 329 | <plugins> |
| 330 | <plugin> |
| 331 | <groupId>org.apache.maven.plugins</groupId> |
| 332 | <artifactId>maven-assembly-plugin</artifactId> |
| 333 | <!-- We override the configuration plugin to override the descriptor to use for building |
| 334 | the source release zip. Specifically, we would like to control the inclusions/exclusions. |
| 335 | For example, we exclude the KEYS file from the zip --> |
| 336 | <executions> |
| 337 | <execution> |
| 338 | <!-- Use this id to match the id mentioned in the assembly plugin configuration in |
| 339 | the apache parent POM under the apache-release profile --> |
| 340 | <id>source-release-assembly</id> |
| 341 | <phase>package</phase> |
| 342 | <goals> |
| 343 | <goal>single</goal> |
| 344 | </goals> |
| 345 | <!-- combine.self should be override to replace the configuration in the parent POM --> |
| 346 | <configuration combine.self="override"> |
| 347 | <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> |
| 348 | <descriptors> |
| 349 | <descriptor>src/main/assembly/source.xml</descriptor> |
| 350 | </descriptors> |
| 351 | </configuration> |
| 352 | </execution> |
| 353 | </executions> |
| 354 | </plugin> |
| 355 | </plugins> |
| 356 | </build> |
| 357 | </profile> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 358 | <profile> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 359 | <id>java8</id> |
| 360 | <activation> |
| 361 | <jdk>1.8</jdk> |
| 362 | </activation> |
| 363 | <properties> |
| 364 | <jdk.version>1.8</jdk.version> |
| 365 | </properties> |
| 366 | </profile> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 367 | </profiles> |
| 368 | |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 369 | <repositories> |
| 370 | <repository> |
Vinayak Borkar | 29502a0 | 2013-12-11 11:18:27 -0800 | [diff] [blame] | 371 | <id>maven-central</id> |
| 372 | <url>http://repo1.maven.org/maven2/</url> |
| 373 | </repository> |
| 374 | <repository> |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 375 | <id>hyracks-public</id> |
| 376 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 377 | </repository> |
| 378 | <repository> |
| 379 | <id>jboss-public</id> |
| 380 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 381 | </repository> |
| 382 | </repositories> |
| 383 | |
| 384 | <pluginRepositories> |
| 385 | <pluginRepository> |
| 386 | <id>hyracks-public</id> |
| 387 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 388 | <releases> |
| 389 | <updatePolicy>always</updatePolicy> |
| 390 | </releases> |
| 391 | </pluginRepository> |
| 392 | </pluginRepositories> |
| 393 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 394 | <modules> |
| 395 | <module>hyracks</module> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 396 | <module>algebricks</module> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 397 | </modules> |
| 398 | </project> |