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> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 20 | <version>0.2.10-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 | |
| 24 | <build> |
| 25 | <plugins> |
| 26 | <plugin> |
| 27 | <groupId>org.apache.maven.plugins</groupId> |
| 28 | <artifactId>maven-release-plugin</artifactId> |
vinayakb | a334a5c | 2012-10-29 13:41:20 +0000 | [diff] [blame] | 29 | <version>2.1</version> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 30 | <configuration> |
| 31 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 32 | </configuration> |
| 33 | </plugin> |
| 34 | <plugin> |
| 35 | <groupId>org.codehaus.mojo</groupId> |
| 36 | <artifactId>versions-maven-plugin</artifactId> |
| 37 | <version>1.2</version> |
| 38 | </plugin> |
| 39 | </plugins> |
| 40 | </build> |
| 41 | |
| 42 | <scm> |
Vinayak Borkar | 721f3f1 | 2013-04-25 14:25:03 -0700 | [diff] [blame] | 43 | <connection>scm:git:https://code.google.com/p/hyracks/</connection> |
| 44 | <developerConnection>scm:git:https://code.google.com/p/hyracks/</developerConnection> |
Vinayak Borkar | 509af89 | 2013-04-25 09:59:16 -0700 | [diff] [blame] | 45 | <url>https://code.google.com/p/hyracks/source/browse/</url> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 46 | </scm> |
| 47 | |
vinayakb | 8983d2b | 2012-10-29 11:04:49 +0000 | [diff] [blame] | 48 | <distributionManagement> |
| 49 | <repository> |
| 50 | <id>hyracks-releases</id> |
| 51 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url> |
| 52 | </repository> |
| 53 | <snapshotRepository> |
| 54 | <id>hyracks-snapshots</id> |
| 55 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url> |
| 56 | </snapshotRepository> |
| 57 | </distributionManagement> |
| 58 | |
| 59 | <repositories> |
| 60 | <repository> |
| 61 | <id>hyracks-public</id> |
| 62 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 63 | </repository> |
| 64 | <repository> |
| 65 | <id>jboss-public</id> |
| 66 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 67 | </repository> |
| 68 | </repositories> |
| 69 | |
| 70 | <pluginRepositories> |
| 71 | <pluginRepository> |
| 72 | <id>hyracks-public</id> |
| 73 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 74 | <releases> |
| 75 | <updatePolicy>always</updatePolicy> |
| 76 | </releases> |
| 77 | </pluginRepository> |
| 78 | </pluginRepositories> |
| 79 | |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 80 | <modules> |
| 81 | <module>hyracks</module> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 82 | <module>algebricks</module> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 83 | <module>pregelix</module> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 84 | <module>hivesterix</module> |
vinayakb | e5add8a | 2012-10-06 19:00:14 +0000 | [diff] [blame] | 85 | </modules> |
| 86 | </project> |