blob: 6439adb3cecfafb837ac486cd5bc483c3e96f0c6 [file] [log] [blame]
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -08001<!--
2 ! 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.
18 !-->
Abdullah Alamoudi4cf1f7b2017-08-11 18:17:37 -070019<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/xsd/maven-4.0.0.xsd">
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -080021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.hyracks</groupId>
24 <artifactId>hyracks</artifactId>
AsterixDB Jenkins93b46c82017-04-13 15:00:24 -070025 <version>0.3.2-SNAPSHOT</version>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -080026 </parent>
27 <artifactId>hyracks-http</artifactId>
Dmitry Lychagin249be532017-05-31 14:57:14 -070028 <properties>
29 <root.dir>${basedir}/../..</root.dir>
30 </properties>
Abdullah Alamoudi4cf1f7b2017-08-11 18:17:37 -070031 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-surefire-plugin</artifactId>
36 <configuration>
37 <argLine>-XX:MaxDirectMemorySize=16M</argLine>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -080042 <dependencies>
43 <dependency>
44 <groupId>io.netty</groupId>
45 <artifactId>netty-all</artifactId>
Till Westmannea666c92017-02-22 22:25:15 -080046 </dependency>
47 <dependency>
48 <groupId>commons-io</groupId>
49 <artifactId>commons-io</artifactId>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -080050 </dependency>
Abdullah Alamoudie85902b2017-02-24 15:43:13 -080051 <dependency>
52 <groupId>org.apache.httpcomponents</groupId>
53 <artifactId>httpcore</artifactId>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.httpcomponents</groupId>
58 <artifactId>httpclient</artifactId>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
64 <scope>test</scope>
65 </dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -080066 </dependencies>
67</project>