blob: 5d88a9a81a1bf76bd3843a3d3dcc171fe077ff12 [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 Alkowaileet15f2c8b2022-10-05 15:06:09 -070020<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>
22 <artifactId>hyracks</artifactId>
23 <packaging>pom</packaging>
24 <name>hyracks</name>
vinayakb0c860392012-10-06 18:47:20 +000025
Wail Alkowaileet15f2c8b2022-10-05 15:06:09 -070026 <parent>
27 <groupId>org.apache.hyracks</groupId>
28 <artifactId>apache-hyracks</artifactId>
Ian Maxon2ce56312023-05-09 12:37:01 -070029 <version>0.3.8.2-SNAPSHOT</version>
Wail Alkowaileet15f2c8b2022-10-05 15:06:09 -070030 </parent>
Chris Hillery08c72ab2014-01-31 00:03:40 -080031
Wail Alkowaileet15f2c8b2022-10-05 15:06:09 -070032 <build>
33 <pluginManagement>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-plugin-plugin</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -040038 <version>3.9.0</version>
Wail Alkowaileet15f2c8b2022-10-05 15:06:09 -070039 </plugin>
40 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
41 <plugin>
42 <groupId>org.eclipse.m2e</groupId>
43 <artifactId>lifecycle-mapping</artifactId>
44 <version>1.0.0</version>
45 <configuration>
46 <lifecycleMappingMetadata>
47 <pluginExecutions>
48 <pluginExecution>
49 <pluginExecutionFilter>
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-plugin-plugin</artifactId>
Wail Alkowaileet15f2c8b2022-10-05 15:06:09 -070052 <versionRange>[0.0,)</versionRange>
53 <goals>
54 <goal>descriptor</goal>
55 </goals>
56 </pluginExecutionFilter>
57 <action>
58 <ignore />
59 </action>
60 </pluginExecution>
61 </pluginExecutions>
62 </lifecycleMappingMetadata>
63 </configuration>
64 </plugin>
65 </plugins>
66 </pluginManagement>
67 </build>
vinayakb0c860392012-10-06 18:47:20 +000068
Wail Alkowaileet15f2c8b2022-10-05 15:06:09 -070069 <properties>
70 <root.dir>${basedir}/..</root.dir>
71 </properties>
Ian Maxon9e37c962015-11-25 07:38:37 -080072
Wail Alkowaileet15f2c8b2022-10-05 15:06:09 -070073 <modules>
74 <module>hyracks-util</module>
75 <module>hyracks-api</module>
76 <module>hyracks-ipc</module>
77 <module>hyracks-comm</module>
78 <module>hyracks-client</module>
79 <module>hyracks-dataflow-common</module>
80 <module>hyracks-dataflow-std</module>
81 <module>hyracks-control</module>
82 <module>hyracks-net</module>
83 <module>hyracks-data</module>
84 <module>hyracks-storage-common</module>
85 <module>hyracks-storage-am-common</module>
86 <module>hyracks-storage-am-bloomfilter</module>
87 <module>hyracks-storage-am-btree</module>
88 <module>hyracks-storage-am-lsm-invertedindex</module>
89 <module>hyracks-storage-am-lsm-common</module>
90 <module>hyracks-storage-am-lsm-btree</module>
91 <module>hyracks-storage-am-lsm-btree-column</module>
92 <module>hyracks-storage-am-lsm-rtree</module>
93 <module>hyracks-storage-am-rtree</module>
94 <module>hyracks-test-support</module>
95 <module>hyracks-tests</module>
96 <module>hyracks-server</module>
97 <module>hyracks-examples</module>
98 <module>hyracks-documentation</module>
99 <!--module>hyracks-hadoop-compat</module-->
100 <module>hyracks-maven-plugins</module>
101 <module>hyracks-hdfs</module>
102 <module>hyracks-dist</module>
103 <module>hyracks-http</module>
104 </modules>
vinayakb0c860392012-10-06 18:47:20 +0000105</project>