blob: 84382e7a79c4bc4112c4942b30f77d3a7615ce3c [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0" encoding="UTF-8"?>
Till Westmann276bbc22013-06-05 18:56:27 -07002<!--
3 ! Copyright 2009-2013 by The Regents of the University of California
4 ! Licensed under the Apache License, Version 2.0 (the "License");
5 ! you may not use this file except in compliance with the License.
6 ! you may obtain a copy of the License from
7 !
8 ! http://www.apache.org/licenses/LICENSE-2.0
9 !
10 ! Unless required by applicable law or agreed to in writing, software
11 ! distributed under the License is distributed on an "AS IS" BASIS,
12 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ! See the License for the specific language governing permissions and
14 ! limitations under the License.
15 !-->
vinayakb0c860392012-10-06 18:47:20 +000016<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>
Ian Maxone915e8c2015-07-01 17:03:31 -070018 <groupId>org.apache.hyracks</groupId>
vinayakb0c860392012-10-06 18:47:20 +000019 <artifactId>hyracks</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080020 <version>0.2.16-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000021 <packaging>pom</packaging>
buyingyi8d79d162012-10-22 23:04:47 +000022 <name>hyracks</name>
vinayakb0c860392012-10-06 18:47:20 +000023
Chris Hillery4fc647c2014-02-13 14:49:58 -080024 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070025 <groupId>org.apache.hyracks</groupId>
Chris Hillery4fc647c2014-02-13 14:49:58 -080026 <artifactId>fullstack</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080027 <version>0.2.16-SNAPSHOT</version>
Chris Hillery4fc647c2014-02-13 14:49:58 -080028 </parent>
Chris Hillery08c72ab2014-01-31 00:03:40 -080029
vinayakb0c860392012-10-06 18:47:20 +000030 <build>
31 <plugins>
32 <plugin>
vinayakb4df31102013-04-06 18:28:48 +000033 <groupId>org.codehaus.mojo</groupId>
34 <artifactId>versions-maven-plugin</artifactId>
35 <version>1.2</version>
vinayakb0c860392012-10-06 18:47:20 +000036 </plugin>
vinayakb0c860392012-10-06 18:47:20 +000037 </plugins>
38 </build>
39
vinayakb0c860392012-10-06 18:47:20 +000040 <repositories>
41 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -080042 <id>maven-central</id>
43 <url>http://repo1.maven.org/maven2/</url>
44 </repository>
45 <repository>
vinayakb0c860392012-10-06 18:47:20 +000046 <id>hyracks-public</id>
47 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
48 </repository>
49 <repository>
50 <id>jboss-public</id>
51 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
52 </repository>
53 </repositories>
54
55 <pluginRepositories>
56 <pluginRepository>
57 <id>hyracks-public</id>
58 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
59 <releases>
60 <updatePolicy>always</updatePolicy>
61 </releases>
62 </pluginRepository>
63 </pluginRepositories>
64
65 <modules>
66 <module>hyracks-ipc</module>
67 <module>hyracks-api</module>
buyingyi55df5212013-03-24 07:20:08 +000068 <module>hyracks-comm</module>
69 <module>hyracks-client</module>
vinayakb0c860392012-10-06 18:47:20 +000070 <module>hyracks-dataflow-common</module>
71 <module>hyracks-dataflow-std</module>
72 <module>hyracks-dataflow-hadoop</module>
73 <module>hyracks-control</module>
74 <module>hyracks-net</module>
75 <module>hyracks-data</module>
vinayakb0c860392012-10-06 18:47:20 +000076 <module>hyracks-storage-common</module>
77 <module>hyracks-storage-am-common</module>
vinayakb4df31102013-04-06 18:28:48 +000078 <module>hyracks-storage-am-bloomfilter</module>
vinayakb0c860392012-10-06 18:47:20 +000079 <module>hyracks-storage-am-btree</module>
vinayakb4df31102013-04-06 18:28:48 +000080 <module>hyracks-storage-am-lsm-invertedindex</module>
81 <module>hyracks-storage-am-lsm-common</module>
82 <module>hyracks-storage-am-lsm-btree</module>
83 <module>hyracks-storage-am-lsm-rtree</module>
vinayakb0c860392012-10-06 18:47:20 +000084 <module>hyracks-storage-am-rtree</module>
85 <module>hyracks-test-support</module>
86 <module>hyracks-tests</module>
87 <module>hyracks-server</module>
88 <module>hyracks-examples</module>
89 <module>hyracks-documentation</module>
90 <module>hyracks-hadoop-compat</module>
vinayakb0c860392012-10-06 18:47:20 +000091 <module>hyracks-maven-plugins</module>
buyingyi55df5212013-03-24 07:20:08 +000092 <module>hyracks-hdfs</module>
93 <module>hyracks-dist</module>
vinayakb4df31102013-04-06 18:28:48 +000094 <!--module>hyracks-yarn</module -->
vinayakb0c860392012-10-06 18:47:20 +000095 </modules>
96</project>