blob: 20c30d0559b1f0986393cbbd3bf26b215054fc50 [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>
Ian Maxon2ce56312023-05-09 12:37:01 -070025 <version>0.3.8.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>
Abdullah Alamoudi7def53f2017-08-21 15:59:00 -070030 <direct.mem>-XX:MaxDirectMemorySize</direct.mem>
31 <num.arenas>-Dio.netty.allocator.numDirectArenas</num.arenas>
32 <max.order>-Dio.netty.allocator.maxOrder</max.order>
Dmitry Lychagin249be532017-05-31 14:57:14 -070033 </properties>
Abdullah Alamoudi4cf1f7b2017-08-11 18:17:37 -070034 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-surefire-plugin</artifactId>
39 <configuration>
Abdullah Alamoudi7def53f2017-08-21 15:59:00 -070040 <argLine>${direct.mem}=16M ${num.arenas}=4 ${max.order}=7</argLine>
Abdullah Alamoudi4cf1f7b2017-08-11 18:17:37 -070041 </configuration>
42 </plugin>
43 </plugins>
44 </build>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -080045 <dependencies>
46 <dependency>
47 <groupId>io.netty</groupId>
Michael Blow951b9cc2021-10-28 20:11:23 -040048 <artifactId>netty-buffer</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>io.netty</groupId>
52 <artifactId>netty-common</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>io.netty</groupId>
56 <artifactId>netty-codec-http</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>io.netty</groupId>
60 <artifactId>netty-transport</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>io.netty</groupId>
64 <artifactId>netty-codec</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>io.netty</groupId>
68 <artifactId>netty-handler</artifactId>
Till Westmannea666c92017-02-22 22:25:15 -080069 </dependency>
70 <dependency>
71 <groupId>commons-io</groupId>
72 <artifactId>commons-io</artifactId>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -080073 </dependency>
Abdullah Alamoudie85902b2017-02-24 15:43:13 -080074 <dependency>
75 <groupId>org.apache.httpcomponents</groupId>
76 <artifactId>httpcore</artifactId>
Abdullah Alamoudie85902b2017-02-24 15:43:13 -080077 </dependency>
78 <dependency>
79 <groupId>org.apache.httpcomponents</groupId>
80 <artifactId>httpclient</artifactId>
Abdullah Alamoudie85902b2017-02-24 15:43:13 -080081 </dependency>
82 <dependency>
Murtadha Hubail1a879cd2018-11-06 17:39:34 +030083 <groupId>org.apache.httpcomponents</groupId>
84 <artifactId>httpcore-nio</artifactId>
Murtadha Hubail1a879cd2018-11-06 17:39:34 +030085 <scope>test</scope>
86 </dependency>
87 <dependency>
Abdullah Alamoudie85902b2017-02-24 15:43:13 -080088 <groupId>junit</groupId>
89 <artifactId>junit</artifactId>
90 <scope>test</scope>
91 </dependency>
Michael Blow9ee6f2d2017-09-25 09:39:02 -040092 <dependency>
93 <groupId>org.apache.hyracks</groupId>
94 <artifactId>hyracks-util</artifactId>
95 <version>${project.version}</version>
96 </dependency>
Michael Blow453c7532017-09-29 11:21:02 -040097 <dependency>
98 <groupId>com.fasterxml.jackson.core</groupId>
99 <artifactId>jackson-databind</artifactId>
100 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300101 <dependency>
102 <groupId>org.apache.logging.log4j</groupId>
103 <artifactId>log4j-api</artifactId>
104 </dependency>
Murtadha Hubail5531ef82018-09-23 20:07:32 +0300105 <dependency>
106 <groupId>org.apache.commons</groupId>
107 <artifactId>commons-lang3</artifactId>
108 </dependency>
Michael Blow6312edf2019-02-11 19:15:57 -0500109 <dependency>
110 <groupId>org.mockito</groupId>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700111 <artifactId>mockito-core</artifactId>
Michael Blow6312edf2019-02-11 19:15:57 -0500112 <scope>test</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.apache.hyracks</groupId>
116 <artifactId>hyracks-util</artifactId>
117 <version>${project.version}</version>
118 <type>test-jar</type>
119 <scope>test</scope>
120 </dependency>
Michael Blow55431322019-02-15 19:06:27 -0500121 <dependency>
122 <groupId>org.apache.hyracks</groupId>
123 <artifactId>hyracks-test-support</artifactId>
124 <version>${project.version}</version>
125 <scope>test</scope>
126 </dependency>
Michael Blow81c52662022-01-27 10:23:23 -0500127 <dependency>
128 <groupId>org.apache.hyracks</groupId>
129 <artifactId>hyracks-api</artifactId>
130 <version>${project.version}</version>
131 </dependency>
Abdullah Alamoudi60e7f122017-01-25 19:16:46 -0800132 </dependencies>
133</project>