blob: 8605e7fe2f707cf520dff5a60c87c31d8dfe260b [file] [log] [blame]
JavierJia26c3b532015-10-23 13:49:32 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Licensed to the Apache Software Foundation (ASF) under one
4 ~ or more contributor license agreements. See the NOTICE file
5 ~ distributed with this work for additional information
6 ~ regarding copyright ownership. The ASF licenses this file
7 ~ to you under the Apache License, Version 2.0 (the
8 ~ "License"); you may not use this file except in compliance
9 ~ with the License. You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing,
14 ~ software distributed under the License is distributed on an
15 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ~ KIND, either express or implied. See the License for the
17 ~ specific language governing permissions and limitations
18 ~ under the License.
19 -->
20
Michael Blow380b0a22016-08-02 13:05:52 -040021<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/xsd/maven-4.0.0.xsd">
Michael Blowb4c1fb02016-05-09 15:41:00 -070022 <parent>
23 <artifactId>hyracks</artifactId>
24 <groupId>org.apache.hyracks</groupId>
Ian Maxon67915ce2022-05-03 06:04:05 +000025 <version>0.3.8</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070026 </parent>
JavierJia26c3b532015-10-23 13:49:32 -070027
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 <modelVersion>4.0.0</modelVersion>
JavierJia26c3b532015-10-23 13:49:32 -070029
Michael Blowb4c1fb02016-05-09 15:41:00 -070030 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-jar-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070035 <executions>
36 <execution>
37 <goals>
38 <goal>test-jar</goal>
39 </goals>
40 </execution>
41 </executions>
42 </plugin>
43 </plugins>
44 </build>
JavierJia26c3b532015-10-23 13:49:32 -070045
Michael Blowb4c1fb02016-05-09 15:41:00 -070046 <artifactId>hyracks-util</artifactId>
Dmitry Lychagin249be532017-05-31 14:57:14 -070047
48 <properties>
49 <root.dir>${basedir}/../..</root.dir>
50 </properties>
51
Michael Blowb4c1fb02016-05-09 15:41:00 -070052 <dependencies>
53 <dependency>
54 <groupId>junit</groupId>
55 <artifactId>junit</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -040056 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070057 </dependency>
Michael Blow1fb232d2017-03-30 20:11:34 -040058 <dependency>
59 <groupId>com.fasterxml.jackson.core</groupId>
60 <artifactId>jackson-databind</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>com.fasterxml.jackson.core</groupId>
64 <artifactId>jackson-core</artifactId>
65 </dependency>
Murtadha Hubail0d0a1132017-07-27 12:18:41 +030066 <dependency>
67 <groupId>org.apache.commons</groupId>
68 <artifactId>commons-lang3</artifactId>
69 </dependency>
Michael Blow453c7532017-09-29 11:21:02 -040070 <dependency>
71 <groupId>org.apache.commons</groupId>
72 <artifactId>commons-collections4</artifactId>
73 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +030074 <dependency>
75 <groupId>org.apache.logging.log4j</groupId>
76 <artifactId>log4j-api</artifactId>
77 </dependency>
Murtadha Hubail4756d1c2018-01-03 01:09:54 +030078 <dependency>
79 <groupId>org.apache.logging.log4j</groupId>
80 <artifactId>log4j-core</artifactId>
81 </dependency>
Michael Blow6f75f052018-04-15 20:06:48 -040082 <dependency>
83 <groupId>commons-io</groupId>
84 <artifactId>commons-io</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.commons</groupId>
88 <artifactId>commons-text</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.apache.httpcomponents</groupId>
92 <artifactId>httpcore</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.httpcomponents</groupId>
96 <artifactId>httpclient</artifactId>
97 </dependency>
Michael Blow0df6cfb2020-06-20 16:54:11 -040098 <dependency>
99 <groupId>com.google.guava</groupId>
100 <artifactId>guava</artifactId>
101 </dependency>
Michael Blow66f584b2020-10-03 16:40:07 -0400102 <dependency>
103 <groupId>it.unimi.dsi</groupId>
Michael Blowd821af02021-04-05 09:33:15 -0400104 <artifactId>fastutil-core</artifactId>
Michael Blow66f584b2020-10-03 16:40:07 -0400105 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700106 </dependencies>
JavierJia26c3b532015-10-23 13:49:32 -0700107
Ian Maxonb165aca2016-03-17 18:21:57 -0700108</project>