blob: 538957bc32b770a5d89508983b8e0dd4e9713795 [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
Wail Alkowaileet511015e2022-09-08 16:42:57 -070020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22 <modelVersion>4.0.0</modelVersion>
23 <artifactId>hyracks</artifactId>
24 <packaging>pom</packaging>
25 <name>hyracks</name>
vinayakb0c860392012-10-06 18:47:20 +000026
Wail Alkowaileet511015e2022-09-08 16:42:57 -070027 <parent>
28 <groupId>org.apache.hyracks</groupId>
29 <artifactId>apache-hyracks</artifactId>
30 <version>0.3.8-SNAPSHOT</version>
31 </parent>
Chris Hillery08c72ab2014-01-31 00:03:40 -080032
Wail Alkowaileet511015e2022-09-08 16:42:57 -070033 <build>
34 <pluginManagement>
35 <plugins>
36 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070037 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-plugin-plugin</artifactId>
Wail Alkowaileet511015e2022-09-08 16:42:57 -070039 <version>3.6.0</version>
40 </plugin>
41 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
42 <plugin>
43 <groupId>org.eclipse.m2e</groupId>
44 <artifactId>lifecycle-mapping</artifactId>
45 <version>1.0.0</version>
46 <configuration>
47 <lifecycleMappingMetadata>
48 <pluginExecutions>
49 <pluginExecution>
50 <pluginExecutionFilter>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-plugin-plugin</artifactId>
53 <versionRange>[0.0,)</versionRange>
54 <goals>
55 <goal>descriptor</goal>
56 </goals>
57 </pluginExecutionFilter>
58 <action>
59 <ignore/>
60 </action>
61 </pluginExecution>
62 </pluginExecutions>
63 </lifecycleMappingMetadata>
64 </configuration>
65 </plugin>
66 </plugins>
67 </pluginManagement>
68 </build>
vinayakb0c860392012-10-06 18:47:20 +000069
Wail Alkowaileet511015e2022-09-08 16:42:57 -070070 <properties>
71 <root.dir>${basedir}/..</root.dir>
72 </properties>
Ian Maxon9e37c962015-11-25 07:38:37 -080073
Wail Alkowaileet511015e2022-09-08 16:42:57 -070074 <modules>
75 <module>hyracks-util</module>
76 <module>hyracks-api</module>
77 <module>hyracks-ipc</module>
78 <module>hyracks-comm</module>
79 <module>hyracks-client</module>
80 <module>hyracks-dataflow-common</module>
81 <module>hyracks-dataflow-std</module>
82 <module>hyracks-control</module>
83 <module>hyracks-net</module>
84 <module>hyracks-data</module>
85 <module>hyracks-storage-common</module>
86 <module>hyracks-storage-am-common</module>
87 <module>hyracks-storage-am-bloomfilter</module>
88 <module>hyracks-storage-am-btree</module>
89 <module>hyracks-storage-am-lsm-invertedindex</module>
90 <module>hyracks-storage-am-lsm-common</module>
91 <module>hyracks-storage-am-lsm-btree</module>
92 <module>hyracks-storage-am-lsm-btree-column</module>
93 <module>hyracks-storage-am-lsm-rtree</module>
94 <module>hyracks-storage-am-rtree</module>
95 <module>hyracks-test-support</module>
96 <module>hyracks-tests</module>
97 <module>hyracks-server</module>
98 <module>hyracks-examples</module>
99 <module>hyracks-documentation</module>
100 <!--module>hyracks-hadoop-compat</module-->
101 <module>hyracks-maven-plugins</module>
102 <module>hyracks-hdfs</module>
103 <module>hyracks-dist</module>
104 <module>hyracks-http</module>
105 </modules>
vinayakb0c860392012-10-06 18:47:20 +0000106</project>