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> |
| 18 | <groupId>edu.uci.ics.hyracks</groupId> |
| 19 | <artifactId>fullstack</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 20 | <version>0.2.14-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> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 23 | |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 24 | <properties> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame^] | 25 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 26 | <jvm.extraargs /> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 27 | <!-- Definition of tests in various categories which may be excluded --> |
Yingyi Bu | 0622e8e | 2014-05-27 17:46:41 -0700 | [diff] [blame] | 28 | <hanging.pregelix.tests>**/pregelix/**/FailureRecovery*.java</hanging.pregelix.tests> |
Chris Hillery | 1990ac3 | 2014-03-07 00:02:58 -0800 | [diff] [blame] | 29 | <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests> |
Chris Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 30 | <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes> |
| 31 | <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^] | 32 | <!-- Versions under dependencymanagement or used in many projects via properties --> |
| 33 | <hadoop.version>2.2.0</hadoop.version> |
| 34 | <junit.version>4.8.1</junit.version> |
| 35 | <commons.io.version>2.4</commons.io.version> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 36 | </properties> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 37 | <dependencyManagement> |
| 38 | <dependencies> |
| 39 | <dependency> |
| 40 | <groupId>junit</groupId> |
| 41 | <artifactId>junit</artifactId> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame^] | 42 | <version>${junit.version}</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 43 | </dependency> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame^] | 44 | <dependency> |
| 45 | <groupId>org.apache.hadoop</groupId> |
| 46 | <artifactId>hadoop-yarn-client</artifactId> |
| 47 | <version>${hadoop.version}</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.apache.hadoop</groupId> |
| 51 | <artifactId>hadoop-client</artifactId> |
| 52 | <version>${hadoop.version}</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.apache.hadoop</groupId> |
| 56 | <artifactId>hadoop-common</artifactId> |
| 57 | <version>${hadoop.version}</version> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.apache.hadoop</groupId> |
| 61 | <artifactId>hadoop-hdfs</artifactId> |
| 62 | <version>${hadoop.version}</version> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.apache.hadoop</groupId> |
| 66 | <artifactId>hadoop-minicluster</artifactId> |
| 67 | <version>${hadoop.version}</version> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.apache.hadoop</groupId> |
| 71 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
| 72 | <version>${hadoop.version}</version> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>commons-io</groupId> |
| 76 | <artifactId>commons-io</artifactId> |
| 77 | <version>${commons.io.version}</version> |
| 78 | </dependency> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 79 | </dependencies> |
| 80 | </dependencyManagement> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 81 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 82 | <build> |
| 83 | <plugins> |
| 84 | <plugin> |
| 85 | <groupId>org.apache.maven.plugins</groupId> |
| 86 | <artifactId>maven-release-plugin</artifactId> |
vinayakb | a334a5c | 2012-10-29 13:41:20 +0000 | [diff] [blame] | 87 | <version>2.1</version> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 88 | <configuration> |
| 89 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 90 | </configuration> |
| 91 | </plugin> |
| 92 | <plugin> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 93 | <groupId>org.codehaus.mojo</groupId> |
| 94 | <artifactId>versions-maven-plugin</artifactId> |
| 95 | <version>1.2</version> |
| 96 | </plugin> |
| 97 | <plugin> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-surefire-plugin</artifactId> |
| 100 | <version>2.16</version> |
| 101 | <configuration> |
| 102 | <failIfNoTests>false</failIfNoTests> |
| 103 | <forkCount>1</forkCount> |
Chris Hillery | d2c1a8a | 2014-02-21 01:03:02 -0800 | [diff] [blame] | 104 | <reuseForks>false</reuseForks> |
Chris Hillery | 069f950 | 2014-03-06 01:49:40 -0800 | [diff] [blame] | 105 | <argLine>-enableassertions -Xmx2048m |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 106 | -Dfile.encoding=UTF-8 |
| 107 | -Djava.util.logging.config.file=${user.home}/logging.properties |
| 108 | -Xdebug |
| 109 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
| 110 | <includes> |
Chris Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 111 | <include>${global.test.includes},${test.includes}</include> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 112 | </includes> |
| 113 | <excludes> |
Chris Hillery | c48cc42 | 2014-03-21 22:47:23 -0700 | [diff] [blame] | 114 | <exclude>${global.test.excludes},${test.excludes}</exclude> |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 115 | </excludes> |
| 116 | </configuration> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 117 | </plugin> |
| 118 | </plugins> |
| 119 | </build> |
| 120 | |
| 121 | <scm> |
Vinayak Borkar | 721f3f1 | 2013-04-25 14:25:03 -0700 | [diff] [blame] | 122 | <connection>scm:git:https://code.google.com/p/hyracks/</connection> |
Ian Maxon | 7c48a95 | 2014-07-11 20:00:13 -0700 | [diff] [blame] | 123 | <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/hyracks</developerConnection> |
Vinayak Borkar | 509af89 | 2013-04-25 09:59:16 -0700 | [diff] [blame] | 124 | <url>https://code.google.com/p/hyracks/source/browse/</url> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 125 | </scm> |
| 126 | |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 127 | <distributionManagement> |
| 128 | <repository> |
| 129 | <id>hyracks-releases</id> |
| 130 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url> |
| 131 | </repository> |
| 132 | <snapshotRepository> |
| 133 | <id>hyracks-snapshots</id> |
| 134 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url> |
| 135 | </snapshotRepository> |
| 136 | </distributionManagement> |
| 137 | |
Chris Hillery | c9d8f92 | 2014-03-06 01:44:19 -0800 | [diff] [blame] | 138 | <profiles> |
| 139 | <profile> |
| 140 | <id>hanging-pregelix-tests</id> |
| 141 | <properties> |
| 142 | <hanging.pregelix.tests /> |
| 143 | </properties> |
| 144 | </profile> |
| 145 | </profiles> |
| 146 | |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 147 | <repositories> |
| 148 | <repository> |
Vinayak Borkar | 29502a0 | 2013-12-11 11:18:27 -0800 | [diff] [blame] | 149 | <id>maven-central</id> |
| 150 | <url>http://repo1.maven.org/maven2/</url> |
| 151 | </repository> |
| 152 | <repository> |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 153 | <id>hyracks-public</id> |
| 154 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 155 | </repository> |
| 156 | <repository> |
| 157 | <id>jboss-public</id> |
| 158 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 159 | </repository> |
| 160 | </repositories> |
| 161 | |
| 162 | <pluginRepositories> |
| 163 | <pluginRepository> |
| 164 | <id>hyracks-public</id> |
| 165 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 166 | <releases> |
| 167 | <updatePolicy>always</updatePolicy> |
| 168 | </releases> |
| 169 | </pluginRepository> |
| 170 | </pluginRepositories> |
| 171 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 172 | <modules> |
| 173 | <module>hyracks</module> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 174 | <module>algebricks</module> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 175 | </modules> |
| 176 | </project> |