blob: 52ccf2f782945961f54e7fc6d91eb7cbe5393a8d [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>
AsterixDB Jenkins92a9a652017-08-07 17:23:07 -070025 <version>0.3.3-SNAPSHOT</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>
Michael Blowb4c1fb02016-05-09 15:41:00 -070078 </dependencies>
JavierJia26c3b532015-10-23 13:49:32 -070079
Ian Maxonb165aca2016-03-17 18:21:57 -070080</project>