blob: a851758c011eece7fc7d26146ab8b5b105727e84 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
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 !-->
vinayakbe5add8a2012-10-06 19:00:14 +000015
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>
ramangrover293b221712013-08-01 11:16:42 -070020 <version>0.2.10-SNAPSHOT</version>
vinayakbe5add8a2012-10-06 19:00:14 +000021 <packaging>pom</packaging>
buyingyi7f356c12012-10-07 00:23:17 +000022 <name>hyracks-ecosystem-full-stack</name>
vinayakbe5add8a2012-10-06 19:00:14 +000023
24 <build>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-release-plugin</artifactId>
vinayakba334a5c2012-10-29 13:41:20 +000029 <version>2.1</version>
vinayakbe5add8a2012-10-06 19:00:14 +000030 <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 Borkar721f3f12013-04-25 14:25:03 -070043 <connection>scm:git:https://code.google.com/p/hyracks/</connection>
44 <developerConnection>scm:git:https://code.google.com/p/hyracks/</developerConnection>
Vinayak Borkar509af892013-04-25 09:59:16 -070045 <url>https://code.google.com/p/hyracks/source/browse/</url>
vinayakbe5add8a2012-10-06 19:00:14 +000046 </scm>
47
vinayakb8983d2b2012-10-29 11:04:49 +000048 <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
vinayakbe5add8a2012-10-06 19:00:14 +000080 <modules>
81 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +000082 <module>algebricks</module>
buyingyi7f356c12012-10-07 00:23:17 +000083 <module>pregelix</module>
buyingyi55df5212013-03-24 07:20:08 +000084 <module>hivesterix</module>
vinayakbe5add8a2012-10-06 19:00:14 +000085 </modules>
86</project>