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> |
Vinayak Borkar | b779e71 | 2013-12-11 12:09:09 -0800 | [diff] [blame] | 20 | <version>0.2.11-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> |
| 25 | <jvm.extraargs /> |
| 26 | <exclude.tests>edu.uci.ics.hyracks.test.infrastructure.SlowTest</exclude.tests> |
| 27 | </properties> |
| 28 | |
| 29 | <profiles> |
| 30 | <profile> |
| 31 | <id>slow</id> |
| 32 | <properties> |
| 33 | <exclude.tests>java.lang.String</exclude.tests> |
| 34 | </properties> |
| 35 | </profile> |
| 36 | </profiles> |
| 37 | |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 38 | <dependencyManagement> |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>junit</groupId> |
| 42 | <artifactId>junit</artifactId> |
| 43 | <version>4.8.1</version> |
| 44 | </dependency> |
| 45 | </dependencies> |
| 46 | </dependencyManagement> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 47 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 48 | <build> |
| 49 | <plugins> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.maven.plugins</groupId> |
| 52 | <artifactId>maven-release-plugin</artifactId> |
vinayakb | a334a5c | 2012-10-29 13:41:20 +0000 | [diff] [blame] | 53 | <version>2.1</version> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 54 | <configuration> |
| 55 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 56 | </configuration> |
| 57 | </plugin> |
| 58 | <plugin> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 59 | <groupId>org.codehaus.mojo</groupId> |
| 60 | <artifactId>versions-maven-plugin</artifactId> |
| 61 | <version>1.2</version> |
| 62 | </plugin> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.maven.plugins</groupId> |
| 65 | <artifactId>maven-surefire-plugin</artifactId> |
| 66 | <version>2.16</version> |
| 67 | <dependencies> |
| 68 | <dependency> |
| 69 | <groupId>org.apache.maven.surefire</groupId> |
| 70 | <artifactId>surefire-junit47</artifactId> |
| 71 | <version>2.16</version> |
| 72 | </dependency> |
| 73 | </dependencies> |
| 74 | <configuration> |
Chris Hillery | d2c1a8a | 2014-02-21 01:03:02 -0800 | [diff] [blame] | 75 | <forkCount>1</forkCount> |
| 76 | <reuseForks>false</reuseForks> |
Chris Hillery | ac331d0 | 2014-02-21 00:30:11 -0800 | [diff] [blame] | 77 | <argLine>-enableassertions -Djava.util.logging.config.file=${user.home}/logging.properties -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n -Xmx2048m</argLine> |
Chris Hillery | 4fc647c | 2014-02-13 14:49:58 -0800 | [diff] [blame] | 78 | <failIfNoTests>false</failIfNoTests> |
| 79 | <includes> |
| 80 | <include>**/*Test.java</include> |
| 81 | <include>**/*TestSuite.java</include> |
| 82 | </includes> |
| 83 | </configuration> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 84 | </plugin> |
| 85 | </plugins> |
| 86 | </build> |
| 87 | |
| 88 | <scm> |
Vinayak Borkar | 721f3f1 | 2013-04-25 14:25:03 -0700 | [diff] [blame] | 89 | <connection>scm:git:https://code.google.com/p/hyracks/</connection> |
| 90 | <developerConnection>scm:git:https://code.google.com/p/hyracks/</developerConnection> |
Vinayak Borkar | 509af89 | 2013-04-25 09:59:16 -0700 | [diff] [blame] | 91 | <url>https://code.google.com/p/hyracks/source/browse/</url> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 92 | </scm> |
| 93 | |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 94 | <distributionManagement> |
| 95 | <repository> |
| 96 | <id>hyracks-releases</id> |
| 97 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url> |
| 98 | </repository> |
| 99 | <snapshotRepository> |
| 100 | <id>hyracks-snapshots</id> |
| 101 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url> |
| 102 | </snapshotRepository> |
| 103 | </distributionManagement> |
| 104 | |
| 105 | <repositories> |
| 106 | <repository> |
Vinayak Borkar | 29502a0 | 2013-12-11 11:18:27 -0800 | [diff] [blame] | 107 | <id>maven-central</id> |
| 108 | <url>http://repo1.maven.org/maven2/</url> |
| 109 | </repository> |
| 110 | <repository> |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 111 | <id>hyracks-public</id> |
| 112 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 113 | </repository> |
| 114 | <repository> |
| 115 | <id>jboss-public</id> |
| 116 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 117 | </repository> |
| 118 | </repositories> |
| 119 | |
| 120 | <pluginRepositories> |
| 121 | <pluginRepository> |
| 122 | <id>hyracks-public</id> |
| 123 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 124 | <releases> |
| 125 | <updatePolicy>always</updatePolicy> |
| 126 | </releases> |
| 127 | </pluginRepository> |
| 128 | </pluginRepositories> |
| 129 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 130 | <modules> |
| 131 | <module>hyracks</module> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 132 | <module>algebricks</module> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 133 | <module>pregelix</module> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 134 | <module>hivesterix</module> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 135 | </modules> |
| 136 | </project> |