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