blob: 600d57c6cf93ca60ea832d767da41d0c0336f438 [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 !-->
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -080019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
vinayakbe5add8a2012-10-06 19:00:14 +000021 <modelVersion>4.0.0</modelVersion>
Ian Maxone915e8c2015-07-01 17:03:31 -070022 <groupId>org.apache.hyracks</groupId>
Michael Blowc3dfd4b2017-01-17 17:19:49 -050023 <artifactId>apache-hyracks</artifactId>
Ian Maxonc95de7a2020-08-07 11:58:39 -070024 <version>0.3.6-SNAPSHOT</version>
vinayakbe5add8a2012-10-06 19:00:14 +000025 <packaging>pom</packaging>
buyingyi7f356c12012-10-07 00:23:17 +000026 <name>hyracks-ecosystem-full-stack</name>
Michael Blow38ca9622018-02-28 11:44:43 -050027 <url>${implementation.url}</url>
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 <parent>
29 <groupId>org.apache</groupId>
30 <artifactId>apache</artifactId>
Michael Blowb99349d2016-11-08 19:38:02 -050031 <version>18</version>
Michael Blow380b0a22016-08-02 13:05:52 -040032 <relativePath />
Michael Blowb4c1fb02016-05-09 15:41:00 -070033 </parent>
Michael Blowb4c1fb02016-05-09 15:41:00 -070034 <licenses>
35 <license>
36 <name>Apache License, Version 2.0</name>
37 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
38 <distribution>repo</distribution>
39 <comments>A business-friendly OSS license</comments>
40 </license>
41 </licenses>
Ian Maxon4b228432017-01-16 13:35:16 -080042 <scm>
43 <connection>scm:git:https://github.com/apache/asterixdb</connection>
44 <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb</developerConnection>
45 <url>https://github.com/apache/asterixdb</url>
Ian Maxona3435a32017-01-18 18:31:30 -080046 <tag>HEAD</tag>
Ian Maxon4b228432017-01-16 13:35:16 -080047 </scm>
Michael Blowb4c1fb02016-05-09 15:41:00 -070048 <properties>
Ian Maxon3bb92132019-02-12 22:20:25 -080049 <root.dir>${basedir}</root.dir>
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Michael Blowdd920be2017-06-07 15:04:33 -040051 <file.encoding>UTF-8</file.encoding>
Michael Blowcedd9612018-07-25 13:25:02 -040052 <source.jdk.version>1.8</source.jdk.version>
Michael Blow2b057012017-12-07 22:20:39 -050053 <javac.xlint.value>all</javac.xlint.value>
Michael Blow380b0a22016-08-02 13:05:52 -040054 <jvm.extraargs />
Michael Blowb4c1fb02016-05-09 15:41:00 -070055 <sonar.jacoco.reportPath>${env.PWD}/target/jacoco-merged.exec</sonar.jacoco.reportPath>
Michael Blow4cd925c2018-01-20 17:15:38 -050056 <source-format.goal>format</source-format.goal>
Dmitry Lychagin249be532017-05-31 14:57:14 -070057 <source-format.skip>false</source-format.skip>
Michael Blowef85fb02019-03-22 13:40:35 -040058 <import-sort.goal>sort</import-sort.goal>
59 <import-sort.skip>false</import-sort.skip>
Ian Maxon3bb92132019-02-12 22:20:25 -080060 <maven.test.skip>false</maven.test.skip>
Michael Blowe30c9d32018-01-20 09:42:19 -050061 <skipTests>false</skipTests>
Michael Blowdd920be2017-06-07 15:04:33 -040062 <skip.surefire.tests>${skipTests}</skip.surefire.tests>
Michael Blow7626d162017-12-10 14:26:56 -050063 <skip.testResources>${maven.test.skip}</skip.testResources>
Michael Blow2530e392018-02-06 01:19:42 -050064 <testLog4jConfigFile>${root.dir}/src/test/resources/log4j2-hyracks-test.xml</testLog4jConfigFile>
Michael Blowb4c1fb02016-05-09 15:41:00 -070065 <!-- Definition of tests in various categories which may be excluded -->
Michael Blowb4c1fb02016-05-09 15:41:00 -070066 <hivesterix.perf.tests>**/hivesterix/perf/PerfTestSuite.java</hivesterix.perf.tests>
67 <global.test.includes>**/*TestSuite.java,**/*Test.java</global.test.includes>
Michael Blow64d49fb2018-02-11 15:43:47 -050068 <global.test.excludes>**/Abstract*.java,${hivesterix.perf.tests}</global.test.excludes>
Michael Blowe30c9d32018-01-20 09:42:19 -050069 <test.includes>${global.test.includes}</test.includes>
70 <test.excludes>${global.test.excludes}</test.excludes>
Michael Blowb4c1fb02016-05-09 15:41:00 -070071 <!-- Versions under dependencymanagement or used in many projects via properties -->
Michael Blow3477a2b2018-10-04 17:17:35 -040072 <hadoop.version>2.8.5</hadoop.version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070073 <jacoco.version>0.7.6.201602180812</jacoco.version>
Michael Blow3856cb32021-05-01 11:36:15 -040074 <log4j.version>2.14.1</log4j.version>
Michael Blow38ca9622018-02-28 11:44:43 -050075
Michael Blowcbfe8f92018-02-28 14:02:38 -050076 <implementation.title>Apache Hyracks and Algebricks - ${project.name}</implementation.title>
Michael Blow38ca9622018-02-28 11:44:43 -050077 <implementation.url>https://asterixdb.apache.org/</implementation.url>
78 <implementation.version>${project.version}</implementation.version>
79 <implementation.vendor>${project.organization.name}</implementation.vendor>
Michael Blowb4c1fb02016-05-09 15:41:00 -070080 </properties>
81 <dependencyManagement>
82 <dependencies>
83 <dependency>
Till Westmannea666c92017-02-22 22:25:15 -080084 <groupId>io.netty</groupId>
85 <artifactId>netty-all</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -040086 <version>4.1.63.Final</version>
Till Westmannea666c92017-02-22 22:25:15 -080087 </dependency>
88 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070089 <groupId>junit</groupId>
90 <artifactId>junit</artifactId>
Michael Blowb5727c62020-03-05 21:16:35 -050091 <version>4.13</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070092 </dependency>
93 <dependency>
94 <groupId>org.apache.hadoop</groupId>
95 <artifactId>hadoop-yarn-client</artifactId>
96 <version>${hadoop.version}</version>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hadoop</groupId>
100 <artifactId>hadoop-client</artifactId>
101 <version>${hadoop.version}</version>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.hadoop</groupId>
105 <artifactId>hadoop-common</artifactId>
106 <version>${hadoop.version}</version>
Michael Blowaebe2c52018-06-10 14:18:53 -0400107 <exclusions>
108 <exclusion>
109 <groupId>javax.servlet.jsp</groupId>
110 <artifactId>jsp-api</artifactId>
111 </exclusion>
112 <exclusion>
113 <groupId>javax.servlet</groupId>
114 <artifactId>servlet-api</artifactId>
115 </exclusion>
116 <exclusion>
117 <groupId>jdk.tools</groupId>
118 <artifactId>jdk.tools</artifactId>
119 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700120 <exclusion>
121 <groupId>log4j</groupId>
122 <artifactId>log4j</artifactId>
123 </exclusion>
Michael Blowaebe2c52018-06-10 14:18:53 -0400124 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700125 </dependency>
126 <dependency>
127 <groupId>org.apache.hadoop</groupId>
128 <artifactId>hadoop-hdfs</artifactId>
129 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700130 <exclusions>
131 <exclusion>
132 <groupId>log4j</groupId>
133 <artifactId>log4j</artifactId>
134 </exclusion>
135 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700136 </dependency>
137 <dependency>
138 <groupId>org.apache.hadoop</groupId>
139 <artifactId>hadoop-minicluster</artifactId>
140 <version>${hadoop.version}</version>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700141 <exclusions>
142 <exclusion>
143 <groupId>log4j</groupId>
144 <artifactId>log4j</artifactId>
145 </exclusion>
146 </exclusions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700147 </dependency>
148 <dependency>
149 <groupId>org.apache.hadoop</groupId>
150 <artifactId>hadoop-mapreduce-client-core</artifactId>
151 <version>${hadoop.version}</version>
152 </dependency>
153 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400154 <groupId>org.apache.hadoop</groupId>
155 <artifactId>hadoop-hdfs</artifactId>
156 <version>${hadoop.version}</version>
157 <classifier>tests</classifier>
158 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700159 <exclusions>
160 <exclusion>
161 <groupId>log4j</groupId>
162 <artifactId>log4j</artifactId>
163 </exclusion>
164 </exclusions>
Michael Blowba358122016-10-13 19:56:03 -0400165 </dependency>
166 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700167 <groupId>commons-io</groupId>
168 <artifactId>commons-io</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -0400169 <version>2.8.0</version>
Michael Blow204b2952017-12-07 20:17:47 -0500170 </dependency>
171 <dependency>
Michael Blow6f75f052018-04-15 20:06:48 -0400172 <groupId>org.apache.commons</groupId>
173 <artifactId>commons-text</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -0400174 <version>1.9</version>
Michael Blow6f75f052018-04-15 20:06:48 -0400175 </dependency>
176 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800177 <groupId>com.fasterxml.jackson.core</groupId>
178 <artifactId>jackson-databind</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -0400179 <version>2.12.3</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800180 </dependency>
181 <dependency>
182 <groupId>com.fasterxml.jackson.core</groupId>
183 <artifactId>jackson-core</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -0400184 <version>2.12.3</version>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800185 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500186 <dependency>
Michael Blow204b2952017-12-07 20:17:47 -0500187 <groupId>com.fasterxml.jackson.core</groupId>
188 <artifactId>jackson-annotations</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -0400189 <version>2.12.3</version>
Michael Blow204b2952017-12-07 20:17:47 -0500190 </dependency>
191 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500192 <groupId>com.google.guava</groupId>
193 <artifactId>guava</artifactId>
Michael Blow3a188522021-01-26 17:13:45 -0500194 <version>30.1-jre</version>
Michael Blowe8e59d0e2019-09-26 19:28:12 -0400195 <exclusions>
196 <exclusion>
197 <groupId>com.google.code.findbugs</groupId>
198 <artifactId>jsr305</artifactId>
199 </exclusion>
200 <exclusion>
201 <groupId>com.google.guava</groupId>
202 <artifactId>listenablefuture</artifactId>
203 </exclusion>
204 <exclusion>
205 <groupId>org.checkerframework</groupId>
206 <artifactId>checker-qual</artifactId>
207 </exclusion>
208 <exclusion>
209 <groupId>com.google.j2objc</groupId>
210 <artifactId>j2objc-annotations</artifactId>
211 </exclusion>
212 <exclusion>
213 <groupId>org.codehaus.mojo</groupId>
214 <artifactId>animal-sniffer-annotations</artifactId>
215 </exclusion>
216 </exclusions>
Michael Blow599ef8f2017-01-12 11:02:53 -0500217 </dependency>
Michael Blow43b40b62017-01-14 17:03:12 -0500218 <dependency>
219 <groupId>org.apache.commons</groupId>
220 <artifactId>commons-lang3</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -0400221 <version>3.12.0</version>
Michael Blow43b40b62017-01-14 17:03:12 -0500222 </dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500223 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500224 <groupId>org.apache.commons</groupId>
225 <artifactId>commons-collections4</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500226 <version>4.4</version>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500227 </dependency>
228 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800229 <groupId>org.apache.httpcomponents</groupId>
230 <artifactId>httpcore</artifactId>
Michael Blow3856cb32021-05-01 11:36:15 -0400231 <version>4.4.14</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800232 </dependency>
233 <dependency>
234 <groupId>org.apache.httpcomponents</groupId>
235 <artifactId>httpclient</artifactId>
Michael Blow3a188522021-01-26 17:13:45 -0500236 <version>4.5.13</version>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800237 </dependency>
238 <dependency>
Michael Blow5e17af22017-02-02 10:00:44 -0500239 <groupId>org.apache.rat</groupId>
240 <artifactId>apache-rat-plugin</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500241 <version>0.13</version>
Michael Blow5e17af22017-02-02 10:00:44 -0500242 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500243 <dependency>
Till Westmann192478b2019-03-01 10:45:25 -0800244 <groupId>org.ini4j</groupId>
245 <artifactId>ini4j</artifactId>
246 <version>0.5.4</version>
247 </dependency>
248 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500249 <groupId>args4j</groupId>
250 <artifactId>args4j</artifactId>
251 <version>2.33</version>
252 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300253 <dependency>
254 <groupId>org.apache.logging.log4j</groupId>
255 <artifactId>log4j-api</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400256 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300257 </dependency>
258 <dependency>
259 <groupId>org.apache.logging.log4j</groupId>
260 <artifactId>log4j-core</artifactId>
Michael Blow2d5bd952020-06-13 12:51:06 -0400261 <version>${log4j.version}</version>
262 </dependency>
263 <dependency>
264 <groupId>org.apache.logging.log4j</groupId>
265 <artifactId>log4j-jul</artifactId>
266 <version>${log4j.version}</version>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300267 </dependency>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800268 <dependency>
269 <groupId>org.mockito</groupId>
270 <artifactId>mockito-all</artifactId>
271 <version>2.0.2-beta</version>
272 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400273 <dependency>
274 <groupId>javax.xml.bind</groupId>
275 <artifactId>jaxb-api</artifactId>
276 <version>2.3.0</version>
277 </dependency>
Michael Blowb8df1c52019-11-08 14:15:42 -0500278 <dependency>
279 <groupId>org.apache.maven</groupId>
280 <artifactId>maven-project</artifactId>
281 <version>2.2.1</version>
282 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500283 <dependency>
284 <groupId>org.apache.maven</groupId>
285 <artifactId>maven-model</artifactId>
286 <version>3.6.3</version>
287 </dependency>
288 <dependency>
289 <groupId>org.apache.maven</groupId>
290 <artifactId>maven-artifact</artifactId>
291 <version>3.6.3</version>
292 </dependency>
293 <dependency>
294 <groupId>org.apache.maven</groupId>
295 <artifactId>maven-compat</artifactId>
296 <version>3.6.3</version>
297 </dependency>
298 <dependency>
299 <groupId>org.apache.maven</groupId>
300 <artifactId>maven-core</artifactId>
301 <version>3.6.3</version>
Michael Blowe2307cf2020-04-24 16:14:03 -0400302 </dependency>
Michael Blowb5727c62020-03-05 21:16:35 -0500303 <dependency>
304 <groupId>org.apache.maven</groupId>
305 <artifactId>maven-plugin-api</artifactId>
306 <version>3.6.3</version>
307 </dependency>
Rui Guo4ce394b2020-07-23 07:35:59 -0700308 <dependency>
309 <groupId>it.unimi.dsi</groupId>
Michael Blowd821af02021-04-05 09:33:15 -0400310 <artifactId>fastutil-core</artifactId>
311 <version>8.5.4</version>
Rui Guo4ce394b2020-07-23 07:35:59 -0700312 </dependency>
Ian Maxon44b4dd82020-10-01 12:58:06 -0700313 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700314 <groupId>org.apache.logging.log4j</groupId>
315 <artifactId>log4j-1.2-api</artifactId>
316 <version>2.13.1</version>
317 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700318 </dependencies>
319 </dependencyManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000320 <build>
321 <plugins>
322 <plugin>
Michael Blowba358122016-10-13 19:56:03 -0400323 <groupId>org.apache.maven.plugins</groupId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500324 <artifactId>maven-jar-plugin</artifactId>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500325 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500326 <excludes combine.children="append">
Michael Blowc96bb1f2017-01-16 16:31:54 -0500327 <exclude>**/DEPENDENCIES</exclude>
328 </excludes>
Michael Blow38ca9622018-02-28 11:44:43 -0500329 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500330 <addMavenDescriptor>false</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500331 <manifest>
332 <addDefaultImplementationEntries>false</addDefaultImplementationEntries>
333 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
334 </manifest>
335 <manifestEntries>
336 <Implementation-Title>${implementation.title}</Implementation-Title>
337 <Implementation-URL>${implementation.url}</Implementation-URL>
338 <Implementation-Version>${implementation.version}</Implementation-Version>
339 <Implementation-Vendor>${implementation.vendor}</Implementation-Vendor>
340 </manifestEntries>
341 </archive>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500342 </configuration>
343 </plugin>
344 <plugin>
345 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400346 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400347 <configuration>
348 <failOnWarning>true</failOnWarning>
349 <outputXML>true</outputXML>
350 </configuration>
351 <executions>
352 <execution>
353 <phase>process-test-classes</phase>
354 <goals>
355 <goal>analyze-only</goal>
356 </goals>
357 </execution>
358 </executions>
359 </plugin>
360 <plugin>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700361 <groupId>org.apache.rat</groupId>
362 <artifactId>apache-rat-plugin</artifactId>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700363 <executions>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700364 <execution>
365 <phase>validate</phase>
366 <goals>
367 <goal>check</goal>
368 </goals>
369 </execution>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700370 </executions>
371 <configuration>
Michael Blow5e17af22017-02-02 10:00:44 -0500372 <addDefaultLicenseMatchers>false</addDefaultLicenseMatchers>
373 <consoleOutput>true</consoleOutput>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700374 <licenses>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800375 <license implementation="org.apache.rat.analysis.license.ApacheSoftwareLicense20" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700376 </licenses>
377 <licenseFamilies>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800378 <licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
Ian Maxon137fc3b2015-06-30 16:23:48 -0700379 </licenseFamilies>
Michael Blow5e17af22017-02-02 10:00:44 -0500380 <excludeSubProjects>true</excludeSubProjects>
Michael Blowe7aec9c2017-04-28 17:08:45 -0400381 <excludes combine.children="append">
382 <exclude>**/*.iml</exclude>
383 </excludes>
Ian Maxon137fc3b2015-06-30 16:23:48 -0700384 </configuration>
385 </plugin>
386 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700387 <groupId>org.apache.maven.plugins</groupId>
388 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700389 <configuration>
390 <failIfNoTests>false</failIfNoTests>
391 <forkCount>1</forkCount>
Chris Hilleryd2c1a8a2014-02-21 01:03:02 -0800392 <reuseForks>false</reuseForks>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800393 <argLine>-enableassertions -Xmx2048m -Dfile.encoding=UTF-8 -Xdebug
Murtadha Hubailc7eb0c52018-05-21 18:01:55 +0300394 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${coverageArgLine}
Michael Blowb4c1fb02016-05-09 15:41:00 -0700395 </argLine>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300396 <systemPropertyVariables>
397 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
398 </systemPropertyVariables>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700399 <includes>
Michael Blowe30c9d32018-01-20 09:42:19 -0500400 <include>${test.includes}</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700401 </includes>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500402 <excludes combine.children="append">
Michael Blowe30c9d32018-01-20 09:42:19 -0500403 <exclude>${test.excludes}</exclude>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800404 </excludes>
Michael Blowdd920be2017-06-07 15:04:33 -0400405 <skipTests>${skip.surefire.tests}</skipTests>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700406 </configuration>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700407 </plugin>
408 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700409 <groupId>org.apache.maven.plugins</groupId>
Murtadha Hubail06ca2792018-01-16 00:12:27 +0300410 <artifactId>maven-failsafe-plugin</artifactId>
411 <configuration>
412 <systemPropertyVariables>
413 <log4j.configurationFile>${testLog4jConfigFile}</log4j.configurationFile>
414 </systemPropertyVariables>
415 </configuration>
416 </plugin>
417 <plugin>
418 <groupId>org.apache.maven.plugins</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700419 <artifactId>maven-compiler-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700420 <configuration>
Michael Blowcedd9612018-07-25 13:25:02 -0400421 <source>${source.jdk.version}</source>
422 <target>${target.jdk.version}</target>
Michael Blow2b057012017-12-07 22:20:39 -0500423 <compilerArgument>-Xlint:${javac.xlint.value}</compilerArgument>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700424 </configuration>
vinayakbe5add8a2012-10-06 19:00:14 +0000425 </plugin>
Ian Maxonb165aca2016-03-17 18:21:57 -0700426 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700427 <groupId>org.apache.maven.plugins</groupId>
428 <artifactId>maven-remote-resources-plugin</artifactId>
429 <executions>
430 <execution>
431 <goals>
432 <goal>process</goal>
433 </goals>
434 <configuration>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500435 <resourceBundles>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700436 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700437 </resourceBundles>
Michael Blowc96bb1f2017-01-16 16:31:54 -0500438 <properties>
439 <projectName>Apache Hyracks - ${project.name}</projectName>
440 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700441 </configuration>
442 </execution>
443 </executions>
Ian Maxon9e37c962015-11-25 07:38:37 -0800444 </plugin>
Michael Blowd1e2a992016-06-14 12:27:46 -0400445 <plugin>
446 <groupId>org.apache.maven.plugins</groupId>
447 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow6a2a4362019-03-27 14:31:16 -0400448 <version>3.0.0</version>
Michael Blowd1e2a992016-06-14 12:27:46 -0400449 <executions>
450 <execution>
451 <id>verify-style</id>
Michael Blow6a2a4362019-03-27 14:31:16 -0400452 <phase>process-sources</phase>
Michael Blowd1e2a992016-06-14 12:27:46 -0400453 <goals>
454 <goal>check</goal>
455 </goals>
456 </execution>
457 </executions>
458 <configuration>
459 <logViolationsToConsole>true</logViolationsToConsole>
460 <checkstyleRules>
461 <module name="Checker">
462 <!-- Checks for whitespace -->
463 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Michael Blow380b0a22016-08-02 13:05:52 -0400464 <module name="FileTabCharacter" />
Michael Blow6a2a4362019-03-27 14:31:16 -0400465 <module name="TreeWalker">
466 <module name="AvoidStarImport">
467 <property name="allowStaticMemberImports" value="true"/>
468 </module>
469 </module>
Michael Blowd1e2a992016-06-14 12:27:46 -0400470 </module>
471 </checkstyleRules>
Michael Blowd6cf6412016-06-30 02:44:35 -0400472 <includes>**/*.java,**/*.jj</includes>
473 <resourceIncludes>**/*.properties,**/*.xml,**/*.xsd,**/*.sh</resourceIncludes>
Michael Blowd1e2a992016-06-14 12:27:46 -0400474 <sourceDirectories>${project.build.sourceDirectory},${project.build.testSourceDirectory}</sourceDirectories>
475 </configuration>
476 </plugin>
Michael Blowf53c1c62016-06-17 16:51:59 -0400477 <plugin>
478 <groupId>org.apache.maven.plugins</groupId>
Michael Blowe2307cf2020-04-24 16:14:03 -0400479 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowf53c1c62016-06-17 16:51:59 -0400480 <executions>
481 <execution>
Michael Blowe2307cf2020-04-24 16:14:03 -0400482 <id>check-pom-packaging</id>
483 <phase>validate</phase>
484 <goals>
485 <goal>run</goal>
486 </goals>
487 <configuration>
488 <exportAntProperties>true</exportAntProperties>
489 <target xmlns:unless="ant:unless">
490 <condition property="skipPomEnforcement">
491 <not><equals arg1="${project.packaging}" arg2="pom"/></not>
492 </condition>
493 <echo message="will enforce non-existence of test source dir due to ${project.packaging} packaging" unless:set="skipPomEnforcement"/>
494 </target>
495 </configuration>
496 </execution>
497 </executions>
498 </plugin>
499 <plugin>
500 <groupId>org.apache.maven.plugins</groupId>
501 <artifactId>maven-enforcer-plugin</artifactId>
502 <executions>
503 <execution>
504 <id>ensure-no-tests-for-pom-packaging</id>
505 <phase>validate</phase>
506 <goals>
507 <goal>enforce</goal>
508 </goals>
509 <configuration>
510 <rules>
511 <requireFilesDontExist>
512 <files>
513 <file>${project.build.testSourceDirectory}</file>
514 </files>
515 <message>#### Tests cannot exist in projects with '${project.packaging}' packaging!</message>
516 </requireFilesDontExist>
517 </rules>
518 <skip>${skipPomEnforcement}</skip>
519 </configuration>
520 </execution>
521 <execution>
Michael Blowf53c1c62016-06-17 16:51:59 -0400522 <id>enforce-versions</id>
523 <goals>
524 <goal>enforce</goal>
525 </goals>
526 <configuration>
527 <rules>
528 <requireMavenVersion>
529 <version>[3.3.9,)</version>
530 </requireMavenVersion>
531 </rules>
532 </configuration>
533 </execution>
534 </executions>
535 </plugin>
Michael Blow7626d162017-12-10 14:26:56 -0500536 <plugin>
537 <groupId>org.apache.maven.plugins</groupId>
538 <artifactId>maven-resources-plugin</artifactId>
539 <executions>
540 <execution>
541 <id>default-testResources</id>
542 <goals>
543 <goal>testResources</goal>
544 </goals>
545 <configuration>
546 <skip>${skip.testResources}</skip>
547 </configuration>
548 </execution>
549 </executions>
550 </plugin>
Michael Blowcb9ca972018-01-27 23:03:30 -0500551 <plugin>
552 <groupId>net.revelc.code.formatter</groupId>
553 <artifactId>formatter-maven-plugin</artifactId>
554 <executions>
555 <execution>
556 <goals>
557 <goal>${source-format.goal}</goal>
558 </goals>
559 </execution>
560 </executions>
561 <configuration>
562 <configFile>${root.dir}/AsterixCodeFormatProfile.xml</configFile>
563 <skipFormatting>${source-format.skip}</skipFormatting>
564 </configuration>
565 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400566 <plugin>
567 <groupId>net.revelc.code</groupId>
568 <artifactId>impsort-maven-plugin</artifactId>
569 <executions>
570 <execution>
571 <goals>
572 <goal>${import-sort.goal}</goal>
573 </goals>
574 </execution>
575 </executions>
576 <configuration>
577 <groups>java,javax,org,com,*</groups>
578 <removeUnused>true</removeUnused>
579 <skip>${import-sort.skip}</skip>
580 </configuration>
581 </plugin>
vinayakbe5add8a2012-10-06 19:00:14 +0000582 </plugins>
Yingyi Bud680e142016-03-18 16:41:46 -0700583 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700584 <plugins>
Michael Blow5e17af22017-02-02 10:00:44 -0500585 <plugin>
Till Westmann65da60c2017-02-22 13:17:49 -0800586 <groupId>org.apache.maven.plugins</groupId>
587 <artifactId>maven-compiler-plugin</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400588 <version>3.8.0</version>
Till Westmann65da60c2017-02-22 13:17:49 -0800589 </plugin>
590 <plugin>
Michael Blow5e17af22017-02-02 10:00:44 -0500591 <groupId>org.apache.rat</groupId>
592 <artifactId>apache-rat-plugin</artifactId>
593 <version>0.12</version>
594 </plugin>
Dmitry Lychagin249be532017-05-31 14:57:14 -0700595 <plugin>
596 <groupId>net.revelc.code.formatter</groupId>
597 <artifactId>formatter-maven-plugin</artifactId>
598 <version>2.0.1</version>
599 </plugin>
Michael Blowef85fb02019-03-22 13:40:35 -0400600 <plugin>
601 <groupId>net.revelc.code</groupId>
602 <artifactId>impsort-maven-plugin</artifactId>
603 <version>1.2.0</version>
604 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700605 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
606 <plugin>
607 <groupId>org.eclipse.m2e</groupId>
608 <artifactId>lifecycle-mapping</artifactId>
609 <version>1.0.0</version>
610 <configuration>
611 <lifecycleMappingMetadata>
612 <pluginExecutions>
613 <pluginExecution>
614 <pluginExecutionFilter>
615 <groupId>org.apache.rat</groupId>
616 <artifactId>apache-rat-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400617 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700618 <goals>
619 <goal>check</goal>
620 </goals>
621 </pluginExecutionFilter>
622 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400623 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700624 </action>
625 </pluginExecution>
Michael Blow8f2cf242016-06-30 01:45:39 -0400626 <pluginExecution>
627 <pluginExecutionFilter>
628 <groupId>org.apache.maven.plugins</groupId>
629 <artifactId>maven-checkstyle-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400630 <versionRange>[0.0,)</versionRange>
Michael Blow8f2cf242016-06-30 01:45:39 -0400631 <goals>
632 <goal>check</goal>
633 </goals>
634 </pluginExecutionFilter>
635 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400636 <ignore />
Michael Blow8f2cf242016-06-30 01:45:39 -0400637 </action>
638 </pluginExecution>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700639 <pluginExecution>
640 <pluginExecutionFilter>
641 <groupId>org.apache.maven.plugins</groupId>
642 <artifactId>maven-dependency-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400643 <versionRange>[0.0,)</versionRange>
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700644 <goals>
645 <goal>analyze-only</goal>
646 </goals>
647 </pluginExecutionFilter>
648 <action>
Ian Maxondef643d2017-01-18 18:31:11 -0800649 <ignore />
Taewoo Kim6ae219d2016-10-19 17:32:35 -0700650 </action>
651 </pluginExecution>
Taewoo Kima252d782018-01-30 13:29:07 -0800652 <pluginExecution>
653 <pluginExecutionFilter>
Abdullah Alamoudi4ff6a362018-02-12 09:24:15 -0800654 <groupId>net.revelc.code.formatter</groupId>
655 <artifactId>formatter-maven-plugin</artifactId>
656 <versionRange>[2.0.1,)</versionRange>
657 <goals>
658 <goal>format</goal>
659 </goals>
660 </pluginExecutionFilter>
661 <action>
662 <ignore></ignore>
663 </action>
Taewoo Kima252d782018-01-30 13:29:07 -0800664 </pluginExecution>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700665 </pluginExecutions>
666 </lifecycleMappingMetadata>
667 </configuration>
668 </plugin>
Ian Maxon99fed932017-02-09 19:11:39 -0800669 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500670 <groupId>org.codehaus.mojo</groupId>
671 <artifactId>versions-maven-plugin</artifactId>
Michael Blow0aae1832017-10-29 11:59:47 -0400672 <version>2.5</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800673 </plugin>
674 <plugin>
Michael Blowa7fad192017-03-09 22:10:19 -0500675 <groupId>org.apache.maven.plugins</groupId>
676 <artifactId>maven-scm-plugin</artifactId>
677 <version>1.9.5</version>
678 </plugin>
679 <plugin>
680 <groupId>org.codehaus.mojo</groupId>
681 <artifactId>appassembler-maven-plugin</artifactId>
682 <version>2.0.0</version>
Ian Maxon99fed932017-02-09 19:11:39 -0800683 </plugin>
Michael Blow10a74862017-05-23 16:55:39 -0400684 <plugin>
685 <groupId>org.apache.maven.plugins</groupId>
686 <artifactId>maven-surefire-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400687 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400688 </plugin>
689 <plugin>
690 <groupId>org.apache.maven.plugins</groupId>
691 <artifactId>maven-failsafe-plugin</artifactId>
Michael Blowaebe2c52018-06-10 14:18:53 -0400692 <version>2.21.0</version>
Michael Blow10a74862017-05-23 16:55:39 -0400693 </plugin>
Michael Blow09f958c2017-08-20 17:02:19 -0400694 <plugin>
695 <groupId>org.apache.hyracks</groupId>
696 <artifactId>license-automation-plugin</artifactId>
697 <version>${project.version}</version>
698 </plugin>
Michael Blow0aae1832017-10-29 11:59:47 -0400699 <plugin>
700 <groupId>org.apache.maven.plugins</groupId>
701 <artifactId>maven-assembly-plugin</artifactId>
702 <version>3.1.0</version>
703 </plugin>
704 <plugin>
705 <groupId>org.apache.maven.plugins</groupId>
706 <artifactId>maven-antrun-plugin</artifactId>
707 <version>1.8</version>
708 </plugin>
709 <plugin>
710 <groupId>org.apache.maven.plugins</groupId>
711 <artifactId>maven-clean-plugin</artifactId>
712 <version>3.0.0</version>
713 </plugin>
714 <plugin>
715 <groupId>org.apache.maven.plugins</groupId>
716 <artifactId>maven-jar-plugin</artifactId>
717 <version>3.0.2</version>
718 </plugin>
719 <plugin>
720 <groupId>org.codehaus.mojo</groupId>
721 <artifactId>build-helper-maven-plugin</artifactId>
722 <version>3.0.0</version>
723 </plugin>
724 <plugin>
725 <groupId>org.apache.maven.plugins</groupId>
726 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowcedd9612018-07-25 13:25:02 -0400727 <version>3.1.1</version>
Michael Blow0aae1832017-10-29 11:59:47 -0400728 </plugin>
Michael Blow918c5b12017-10-30 14:51:13 -0400729 <plugin>
730 <groupId>org.apache.maven.doxia</groupId>
731 <artifactId>doxia-maven-plugin</artifactId>
732 <version>1.1.4</version>
733 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700734 </plugins>
735 </pluginManagement>
vinayakbe5add8a2012-10-06 19:00:14 +0000736 </build>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800737 <profiles>
738 <profile>
Michael Blow916dce42017-05-23 13:19:12 -0400739 <id>skip-assembly</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700740 <activation>
741 <file>
Michael Blow916dce42017-05-23 13:19:12 -0400742 <missing>src/main/assembly/source.xml</missing>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700743 </file>
744 </activation>
Michael Blow916dce42017-05-23 13:19:12 -0400745 <properties>
746 <skip.assembly>true</skip.assembly>
747 </properties>
748 </profile>
749 <profile>
750 <id>release</id>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700751 <build>
752 <plugins>
753 <plugin>
754 <groupId>org.apache.maven.plugins</groupId>
Michael Blow38ca9622018-02-28 11:44:43 -0500755 <artifactId>maven-jar-plugin</artifactId>
756 <configuration>
757 <archive>
Michael Blowaed96f02019-03-01 18:47:19 -0500758 <addMavenDescriptor>true</addMavenDescriptor>
Michael Blow38ca9622018-02-28 11:44:43 -0500759 <manifest>
760 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
761 <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
762 </manifest>
763 </archive>
764 </configuration>
765 </plugin>
766 <plugin>
767 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700768 <artifactId>maven-assembly-plugin</artifactId>
769 <!-- We override the configuration plugin to override the descriptor to use for building
770 the source release zip. Specifically, we would like to control the inclusions/exclusions.
771 For example, we exclude the KEYS file from the zip -->
772 <executions>
773 <execution>
774 <!-- Use this id to match the id mentioned in the assembly plugin configuration in
775 the apache parent POM under the apache-release profile -->
776 <id>source-release-assembly</id>
777 <phase>package</phase>
778 <goals>
779 <goal>single</goal>
780 </goals>
781 <!-- combine.self should be override to replace the configuration in the parent POM -->
782 <configuration combine.self="override">
783 <descriptors>
784 <descriptor>src/main/assembly/source.xml</descriptor>
785 </descriptors>
Michael Blow916dce42017-05-23 13:19:12 -0400786 <skipAssembly>${skip.assembly}</skipAssembly>
Ian Maxon4c9260c2017-04-01 10:12:36 -0700787 </configuration>
788 </execution>
789 </executions>
790 </plugin>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700791 <plugin>
792 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon99fed932017-02-09 19:11:39 -0800793 <artifactId>maven-gpg-plugin</artifactId>
794 <version>1.6</version>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700795 <executions>
796 <execution>
Ian Maxon99fed932017-02-09 19:11:39 -0800797 <id>sign-artifacts</id>
798 <phase>verify</phase>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700799 <goals>
Ian Maxon99fed932017-02-09 19:11:39 -0800800 <goal>sign</goal>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700801 </goals>
Chris Hillery1fda6bc2015-10-02 17:18:11 -0700802 </execution>
803 </executions>
804 </plugin>
805 </plugins>
806 </build>
807 </profile>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700808 <profile>
Michael Blow7c15c132016-05-04 22:06:34 -0400809 <id>coverage</id>
810 <activation>
811 <property>
812 <name>coverage</name>
813 </property>
814 </activation>
815 <build>
816 <plugins>
817 <plugin>
818 <groupId>org.jacoco</groupId>
819 <artifactId>jacoco-maven-plugin</artifactId>
820 <version>${jacoco.version}</version>
821 <executions>
822 <execution>
823 <id>default-prepare-agent</id>
824 <goals>
825 <goal>prepare-agent</goal>
826 </goals>
827 <configuration>
828 <propertyName>coverageArgLine</propertyName>
829 </configuration>
830 </execution>
831 <execution>
832 <id>default-prepare-agent-integration</id>
833 <goals>
834 <goal>prepare-agent-integration</goal>
835 </goals>
836 <configuration>
837 <propertyName>coverageArgLine</propertyName>
838 </configuration>
839 </execution>
840 </executions>
841 </plugin>
842 </plugins>
843 </build>
844 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400845 <coverage />
Michael Blow7c15c132016-05-04 22:06:34 -0400846 </properties>
847 </profile>
848 <profile>
849 <id>no-coverage</id>
850 <activation>
851 <property>
852 <name>!coverage</name>
853 </property>
854 </activation>
855 <properties>
Michael Blow380b0a22016-08-02 13:05:52 -0400856 <coverageArgLine />
Michael Blow7c15c132016-05-04 22:06:34 -0400857 </properties>
858 </profile>
859 <profile>
Michael Blow64d49fb2018-02-11 15:43:47 -0500860 <id>integration-tests-only</id>
861 <properties>
862 <test.includes/>
863 <failIfNoTests>false</failIfNoTests>
864 </properties>
865 </profile>
Michael Blowcedd9612018-07-25 13:25:02 -0400866 <profile>
867 <id>java8</id>
868 <activation>
Michael Blow0de90812019-08-23 16:27:29 -0400869 <jdk>[1.8,)</jdk>
Michael Blowcedd9612018-07-25 13:25:02 -0400870 </activation>
871 <properties>
872 <target.jdk.version>8</target.jdk.version>
873 </properties>
874 </profile>
875 <profile>
Michael Blowcedd9612018-07-25 13:25:02 -0400876 <id>java8-bootclasspath</id>
877 <activation>
878 <property>
879 <name>java8-bootclasspath</name>
880 </property>
881 </activation>
882 <properties>
883 <target.jdk.version>8</target.jdk.version>
884 </properties>
885 <build>
886 <plugins>
887 <plugin>
888 <groupId>org.apache.maven.plugins</groupId>
889 <artifactId>maven-compiler-plugin</artifactId>
890 <configuration>
891 <compilerArgs combine.children="append">
892 <arg>-bootclasspath</arg>
893 <arg>${java8-bootclasspath}</arg>
894 </compilerArgs>
895 </configuration>
896 </plugin>
897 </plugins>
898 </build>
899 </profile>
Chris Hilleryc9d8f922014-03-06 01:44:19 -0800900 </profiles>
vinayakbe5add8a2012-10-06 19:00:14 +0000901 <modules>
902 <module>hyracks</module>
vinayakb36016dc2012-10-09 06:10:12 +0000903 <module>algebricks</module>
Michael Blow43b40b62017-01-14 17:03:12 -0500904 <module>hyracks-fullstack-license</module>
vinayakbe5add8a2012-10-06 19:00:14 +0000905 </modules>
Michael Blow3477a2b2018-10-04 17:17:35 -0400906</project>