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