blob: 70dfa3868e1b8a8bcf09bead1394357e5d336e9f [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>
vinayakb0c860392012-10-06 18:47:20 +000024 <packaging>pom</packaging>
buyingyi8d79d162012-10-22 23:04:47 +000025 <name>hyracks</name>
vinayakb0c860392012-10-06 18:47:20 +000026
Chris Hillery4fc647c2014-02-13 14:49:58 -080027 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070028 <groupId>org.apache.hyracks</groupId>
Ian Maxon2378ed62015-11-24 13:04:19 -080029 <artifactId>apache-asterixdb-hyracks</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080030 <version>0.2.18-SNAPSHOT</version>
Chris Hillery4fc647c2014-02-13 14:49:58 -080031 </parent>
Chris Hillery08c72ab2014-01-31 00:03:40 -080032
vinayakb0c860392012-10-06 18:47:20 +000033 <build>
34 <plugins>
35 <plugin>
vinayakb4df31102013-04-06 18:28:48 +000036 <groupId>org.codehaus.mojo</groupId>
37 <artifactId>versions-maven-plugin</artifactId>
38 <version>1.2</version>
vinayakb0c860392012-10-06 18:47:20 +000039 </plugin>
Ian Maxon9e37c962015-11-25 07:38:37 -080040 <plugin>
41 <groupId>org.apache.rat</groupId>
42 <artifactId>apache-rat-plugin</artifactId>
43 <version>0.11</version>
44 <configuration>
45 <skip>true</skip>
46 </configuration>
47 </plugin>
vinayakb0c860392012-10-06 18:47:20 +000048 </plugins>
Ildar Absalyamov4eb3c9a2015-10-14 23:11:06 -070049 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 <plugins>
51 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
52 <plugin>
53 <groupId>org.eclipse.m2e</groupId>
54 <artifactId>lifecycle-mapping</artifactId>
55 <version>1.0.0</version>
56 <configuration>
57 <lifecycleMappingMetadata>
58 <pluginExecutions>
59 <pluginExecution>
60 <pluginExecutionFilter>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-plugin-plugin</artifactId>
63 <versionRange>[3.4,)</versionRange>
64 <goals>
65 <goal>descriptor</goal>
66 </goals>
67 </pluginExecutionFilter>
68 <action>
Michael Blow380b0a22016-08-02 13:05:52 -040069 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -070070 </action>
71 </pluginExecution>
72 </pluginExecutions>
73 </lifecycleMappingMetadata>
74 </configuration>
75 </plugin>
76 </plugins>
Ildar Absalyamov4eb3c9a2015-10-14 23:11:06 -070077 </pluginManagement>
vinayakb0c860392012-10-06 18:47:20 +000078 </build>
79
Ian Maxon9e37c962015-11-25 07:38:37 -080080 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070081 <root.dir>${basedir}/..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080082 </properties>
83
vinayakb0c860392012-10-06 18:47:20 +000084 <repositories>
85 <repository>
Vinayak Borkar29502a02013-12-11 11:18:27 -080086 <id>maven-central</id>
87 <url>http://repo1.maven.org/maven2/</url>
88 </repository>
89 <repository>
vinayakb0c860392012-10-06 18:47:20 +000090 <id>hyracks-public</id>
91 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
92 </repository>
93 <repository>
94 <id>jboss-public</id>
95 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
96 </repository>
97 </repositories>
98
99 <pluginRepositories>
100 <pluginRepository>
101 <id>hyracks-public</id>
102 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
103 <releases>
104 <updatePolicy>always</updatePolicy>
105 </releases>
106 </pluginRepository>
107 </pluginRepositories>
108
109 <modules>
JavierJia26c3b532015-10-23 13:49:32 -0700110 <module>hyracks-util</module>
vinayakb0c860392012-10-06 18:47:20 +0000111 <module>hyracks-ipc</module>
112 <module>hyracks-api</module>
buyingyi55df5212013-03-24 07:20:08 +0000113 <module>hyracks-comm</module>
114 <module>hyracks-client</module>
vinayakb0c860392012-10-06 18:47:20 +0000115 <module>hyracks-dataflow-common</module>
116 <module>hyracks-dataflow-std</module>
vinayakb0c860392012-10-06 18:47:20 +0000117 <module>hyracks-control</module>
118 <module>hyracks-net</module>
119 <module>hyracks-data</module>
vinayakb0c860392012-10-06 18:47:20 +0000120 <module>hyracks-storage-common</module>
121 <module>hyracks-storage-am-common</module>
vinayakb4df31102013-04-06 18:28:48 +0000122 <module>hyracks-storage-am-bloomfilter</module>
vinayakb0c860392012-10-06 18:47:20 +0000123 <module>hyracks-storage-am-btree</module>
vinayakb4df31102013-04-06 18:28:48 +0000124 <module>hyracks-storage-am-lsm-invertedindex</module>
125 <module>hyracks-storage-am-lsm-common</module>
126 <module>hyracks-storage-am-lsm-btree</module>
127 <module>hyracks-storage-am-lsm-rtree</module>
vinayakb0c860392012-10-06 18:47:20 +0000128 <module>hyracks-storage-am-rtree</module>
129 <module>hyracks-test-support</module>
130 <module>hyracks-tests</module>
131 <module>hyracks-server</module>
132 <module>hyracks-examples</module>
133 <module>hyracks-documentation</module>
Ian Maxond0d05042015-09-11 17:34:39 -0700134 <!--module>hyracks-hadoop-compat</module-->
vinayakb0c860392012-10-06 18:47:20 +0000135 <module>hyracks-maven-plugins</module>
buyingyi55df5212013-03-24 07:20:08 +0000136 <module>hyracks-hdfs</module>
137 <module>hyracks-dist</module>
vinayakb0c860392012-10-06 18:47:20 +0000138 </modules>
139</project>