blob: b45cf8c88bbf58ac98f28b0f1e19a51e4000d807 [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>
vinayakb0c860392012-10-06 18:47:20 +000022 <artifactId>hyracks</artifactId>
vinayakb0c860392012-10-06 18:47:20 +000023 <packaging>pom</packaging>
buyingyi8d79d162012-10-22 23:04:47 +000024 <name>hyracks</name>
vinayakb0c860392012-10-06 18:47:20 +000025
Chris Hillery4fc647c2014-02-13 14:49:58 -080026 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070027 <groupId>org.apache.hyracks</groupId>
Michael Blowc3dfd4b2017-01-17 17:19:49 -050028 <artifactId>apache-hyracks</artifactId>
Ian Maxon2d232b62017-01-18 12:17:09 -080029 <version>0.2.18-SNAPSHOT</version>
Chris Hillery4fc647c2014-02-13 14:49:58 -080030 </parent>
Chris Hillery08c72ab2014-01-31 00:03:40 -080031
vinayakb0c860392012-10-06 18:47:20 +000032 <build>
33 <plugins>
34 <plugin>
vinayakb4df31102013-04-06 18:28:48 +000035 <groupId>org.codehaus.mojo</groupId>
36 <artifactId>versions-maven-plugin</artifactId>
37 <version>1.2</version>
vinayakb0c860392012-10-06 18:47:20 +000038 </plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -080039 <plugin>
40 <groupId>org.apache.rat</groupId>
41 <artifactId>apache-rat-plugin</artifactId>
42 <version>0.11</version>
43 <configuration>
44 <skip>true</skip>
45 </configuration>
46 </plugin>
vinayakb0c860392012-10-06 18:47:20 +000047 </plugins>
Ildar Absalyamov4eb3c9a2015-10-14 23:11:06 -070048 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -070049 <plugins>
50 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
51 <plugin>
52 <groupId>org.eclipse.m2e</groupId>
53 <artifactId>lifecycle-mapping</artifactId>
54 <version>1.0.0</version>
55 <configuration>
56 <lifecycleMappingMetadata>
57 <pluginExecutions>
58 <pluginExecution>
59 <pluginExecutionFilter>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-plugin-plugin</artifactId>
62 <versionRange>[3.4,)</versionRange>
63 <goals>
64 <goal>descriptor</goal>
65 </goals>
66 </pluginExecutionFilter>
67 <action>
Michael Blow380b0a22016-08-02 13:05:52 -040068 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -070069 </action>
70 </pluginExecution>
71 </pluginExecutions>
72 </lifecycleMappingMetadata>
73 </configuration>
74 </plugin>
75 </plugins>
Ildar Absalyamov4eb3c9a2015-10-14 23:11:06 -070076 </pluginManagement>
vinayakb0c860392012-10-06 18:47:20 +000077 </build>
78
Ian Maxon9e37c962015-11-25 07:38:37 -080079 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070080 <root.dir>${basedir}/..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080081 </properties>
82
vinayakb0c860392012-10-06 18:47:20 +000083 <repositories>
84 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -080085 <id>maven-central</id>
86 <url>http://repo1.maven.org/maven2/</url>
87 </repository>
88 <repository>
vinayakb0c860392012-10-06 18:47:20 +000089 <id>hyracks-public</id>
90 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
91 </repository>
vinayakb0c860392012-10-06 18:47:20 +000092 </repositories>
93
94 <pluginRepositories>
95 <pluginRepository>
96 <id>hyracks-public</id>
97 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
98 <releases>
99 <updatePolicy>always</updatePolicy>
100 </releases>
101 </pluginRepository>
102 </pluginRepositories>
103
104 <modules>
JavierJia26c3b532015-10-23 13:49:32 -0700105 <module>hyracks-util</module>
vinayakb0c860392012-10-06 18:47:20 +0000106 <module>hyracks-ipc</module>
107 <module>hyracks-api</module>
buyingyi55df5212013-03-24 07:20:08 +0000108 <module>hyracks-comm</module>
109 <module>hyracks-client</module>
vinayakb0c860392012-10-06 18:47:20 +0000110 <module>hyracks-dataflow-common</module>
111 <module>hyracks-dataflow-std</module>
vinayakb0c860392012-10-06 18:47:20 +0000112 <module>hyracks-control</module>
113 <module>hyracks-net</module>
114 <module>hyracks-data</module>
vinayakb0c860392012-10-06 18:47:20 +0000115 <module>hyracks-storage-common</module>
116 <module>hyracks-storage-am-common</module>
vinayakb4df31102013-04-06 18:28:48 +0000117 <module>hyracks-storage-am-bloomfilter</module>
vinayakb0c860392012-10-06 18:47:20 +0000118 <module>hyracks-storage-am-btree</module>
vinayakb4df31102013-04-06 18:28:48 +0000119 <module>hyracks-storage-am-lsm-invertedindex</module>
120 <module>hyracks-storage-am-lsm-common</module>
121 <module>hyracks-storage-am-lsm-btree</module>
122 <module>hyracks-storage-am-lsm-rtree</module>
vinayakb0c860392012-10-06 18:47:20 +0000123 <module>hyracks-storage-am-rtree</module>
124 <module>hyracks-test-support</module>
125 <module>hyracks-tests</module>
126 <module>hyracks-server</module>
127 <module>hyracks-examples</module>
128 <module>hyracks-documentation</module>
Ian Maxond0d05042015-09-11 17:34:39 -0700129 <!--module>hyracks-hadoop-compat</module-->
vinayakb0c860392012-10-06 18:47:20 +0000130 <module>hyracks-maven-plugins</module>
buyingyi55df5212013-03-24 07:20:08 +0000131 <module>hyracks-hdfs</module>
132 <module>hyracks-dist</module>
vinayakb0c860392012-10-06 18:47:20 +0000133 </modules>
134</project>