blob: 61e06e4f39bae4718a04107be628a93cb77aa014 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070018 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
vinayakb0c860392012-10-06 18:47:20 +000020<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">
21 <modelVersion>4.0.0</modelVersion>
Ian Maxone915e8c2015-07-01 17:03:31 -070022 <groupId>org.apache.hyracks</groupId>
vinayakb0c860392012-10-06 18:47:20 +000023 <artifactId>hyracks</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -070024 <version>0.2.17-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000025 <packaging>pom</packaging>
buyingyi8d79d162012-10-22 23:04:47 +000026 <name>hyracks</name>
vinayakb0c860392012-10-06 18:47:20 +000027
Chris Hillery4fc647c2014-02-13 14:49:58 -080028 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070029 <groupId>org.apache.hyracks</groupId>
Chris Hillery4fc647c2014-02-13 14:49:58 -080030 <artifactId>fullstack</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -070031 <version>0.2.17-SNAPSHOT</version>
Chris Hillery4fc647c2014-02-13 14:49:58 -080032 </parent>
Chris Hillery08c72ab2014-01-31 00:03:40 -080033
vinayakb0c860392012-10-06 18:47:20 +000034 <build>
35 <plugins>
36 <plugin>
vinayakb4df31102013-04-06 18:28:48 +000037 <groupId>org.codehaus.mojo</groupId>
38 <artifactId>versions-maven-plugin</artifactId>
39 <version>1.2</version>
vinayakb0c860392012-10-06 18:47:20 +000040 </plugin>
vinayakb0c860392012-10-06 18:47:20 +000041 </plugins>
Ildar Absalyamov4eb3c9a2015-10-14 23:11:06 -070042 <pluginManagement>
43 <plugins>
44 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
45 <plugin>
46 <groupId>org.eclipse.m2e</groupId>
47 <artifactId>lifecycle-mapping</artifactId>
48 <version>1.0.0</version>
49 <configuration>
50 <lifecycleMappingMetadata>
51 <pluginExecutions>
52 <pluginExecution>
53 <pluginExecutionFilter>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-plugin-plugin</artifactId>
56 <versionRange>[3.4,)</versionRange>
57 <goals>
58 <goal>descriptor</goal>
59 </goals>
60 </pluginExecutionFilter>
61 <action>
62 <ignore></ignore>
63 </action>
64 </pluginExecution>
65 </pluginExecutions>
66 </lifecycleMappingMetadata>
67 </configuration>
68 </plugin>
69 </plugins>
70 </pluginManagement>
vinayakb0c860392012-10-06 18:47:20 +000071 </build>
72
vinayakb0c860392012-10-06 18:47:20 +000073 <repositories>
74 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -080075 <id>maven-central</id>
76 <url>http://repo1.maven.org/maven2/</url>
77 </repository>
78 <repository>
vinayakb0c860392012-10-06 18:47:20 +000079 <id>hyracks-public</id>
80 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
81 </repository>
82 <repository>
83 <id>jboss-public</id>
84 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
85 </repository>
86 </repositories>
87
88 <pluginRepositories>
89 <pluginRepository>
90 <id>hyracks-public</id>
91 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
92 <releases>
93 <updatePolicy>always</updatePolicy>
94 </releases>
95 </pluginRepository>
96 </pluginRepositories>
97
98 <modules>
JavierJia26c3b532015-10-23 13:49:32 -070099 <module>hyracks-util</module>
vinayakb0c860392012-10-06 18:47:20 +0000100 <module>hyracks-ipc</module>
101 <module>hyracks-api</module>
buyingyi55df5212013-03-24 07:20:08 +0000102 <module>hyracks-comm</module>
103 <module>hyracks-client</module>
vinayakb0c860392012-10-06 18:47:20 +0000104 <module>hyracks-dataflow-common</module>
105 <module>hyracks-dataflow-std</module>
106 <module>hyracks-dataflow-hadoop</module>
107 <module>hyracks-control</module>
108 <module>hyracks-net</module>
109 <module>hyracks-data</module>
vinayakb0c860392012-10-06 18:47:20 +0000110 <module>hyracks-storage-common</module>
111 <module>hyracks-storage-am-common</module>
vinayakb4df31102013-04-06 18:28:48 +0000112 <module>hyracks-storage-am-bloomfilter</module>
vinayakb0c860392012-10-06 18:47:20 +0000113 <module>hyracks-storage-am-btree</module>
vinayakb4df31102013-04-06 18:28:48 +0000114 <module>hyracks-storage-am-lsm-invertedindex</module>
115 <module>hyracks-storage-am-lsm-common</module>
116 <module>hyracks-storage-am-lsm-btree</module>
117 <module>hyracks-storage-am-lsm-rtree</module>
vinayakb0c860392012-10-06 18:47:20 +0000118 <module>hyracks-storage-am-rtree</module>
119 <module>hyracks-test-support</module>
120 <module>hyracks-tests</module>
121 <module>hyracks-server</module>
122 <module>hyracks-examples</module>
123 <module>hyracks-documentation</module>
Ian Maxond0d05042015-09-11 17:34:39 -0700124 <!--module>hyracks-hadoop-compat</module-->
vinayakb0c860392012-10-06 18:47:20 +0000125 <module>hyracks-maven-plugins</module>
buyingyi55df5212013-03-24 07:20:08 +0000126 <module>hyracks-hdfs</module>
127 <module>hyracks-dist</module>
vinayakb0c860392012-10-06 18:47:20 +0000128 </modules>
129</project>