Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 1 | <!-- |
| 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 Alamoudi | 4cf1f7b | 2017-08-11 18:17:37 -0700 | [diff] [blame] | 19 | <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 Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.apache.hyracks</groupId> |
| 24 | <artifactId>hyracks</artifactId> |
Michael Blow | 23d990c | 2019-03-27 22:11:26 -0400 | [diff] [blame] | 25 | <version>0.3.4.2-SNAPSHOT</version> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | <artifactId>hyracks-http</artifactId> |
Dmitry Lychagin | 249be53 | 2017-05-31 14:57:14 -0700 | [diff] [blame] | 28 | <properties> |
| 29 | <root.dir>${basedir}/../..</root.dir> |
Abdullah Alamoudi | 7def53f | 2017-08-21 15:59:00 -0700 | [diff] [blame] | 30 | <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 Lychagin | 249be53 | 2017-05-31 14:57:14 -0700 | [diff] [blame] | 33 | </properties> |
Abdullah Alamoudi | 4cf1f7b | 2017-08-11 18:17:37 -0700 | [diff] [blame] | 34 | <build> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <groupId>org.apache.maven.plugins</groupId> |
| 38 | <artifactId>maven-surefire-plugin</artifactId> |
| 39 | <configuration> |
Abdullah Alamoudi | 7def53f | 2017-08-21 15:59:00 -0700 | [diff] [blame] | 40 | <argLine>${direct.mem}=16M ${num.arenas}=4 ${max.order}=7</argLine> |
Abdullah Alamoudi | 4cf1f7b | 2017-08-11 18:17:37 -0700 | [diff] [blame] | 41 | </configuration> |
| 42 | </plugin> |
| 43 | </plugins> |
| 44 | </build> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>io.netty</groupId> |
Michael Blow | 43c9fa0 | 2021-10-28 20:11:23 -0400 | [diff] [blame^] | 48 | <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-handler</artifactId> |
Till Westmann | ea666c9 | 2017-02-22 22:25:15 -0800 | [diff] [blame] | 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>commons-io</groupId> |
| 68 | <artifactId>commons-io</artifactId> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 69 | </dependency> |
Abdullah Alamoudi | e85902b | 2017-02-24 15:43:13 -0800 | [diff] [blame] | 70 | <dependency> |
| 71 | <groupId>org.apache.httpcomponents</groupId> |
| 72 | <artifactId>httpcore</artifactId> |
Abdullah Alamoudi | e85902b | 2017-02-24 15:43:13 -0800 | [diff] [blame] | 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.apache.httpcomponents</groupId> |
| 76 | <artifactId>httpclient</artifactId> |
Abdullah Alamoudi | e85902b | 2017-02-24 15:43:13 -0800 | [diff] [blame] | 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>junit</groupId> |
| 80 | <artifactId>junit</artifactId> |
| 81 | <scope>test</scope> |
| 82 | </dependency> |
Michael Blow | 9ee6f2d | 2017-09-25 09:39:02 -0400 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>org.apache.hyracks</groupId> |
| 85 | <artifactId>hyracks-util</artifactId> |
| 86 | <version>${project.version}</version> |
| 87 | </dependency> |
Michael Blow | 453c753 | 2017-09-29 11:21:02 -0400 | [diff] [blame] | 88 | <dependency> |
| 89 | <groupId>com.fasterxml.jackson.core</groupId> |
| 90 | <artifactId>jackson-databind</artifactId> |
| 91 | </dependency> |
Murtadha Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 92 | <dependency> |
| 93 | <groupId>org.apache.logging.log4j</groupId> |
| 94 | <artifactId>log4j-api</artifactId> |
| 95 | </dependency> |
Michael Blow | 6312edf | 2019-02-11 19:15:57 -0500 | [diff] [blame] | 96 | <dependency> |
| 97 | <groupId>org.apache.commons</groupId> |
| 98 | <artifactId>commons-lang3</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.mockito</groupId> |
| 102 | <artifactId>mockito-all</artifactId> |
| 103 | <scope>test</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.apache.hyracks</groupId> |
| 107 | <artifactId>hyracks-util</artifactId> |
| 108 | <version>${project.version}</version> |
| 109 | <type>test-jar</type> |
| 110 | <scope>test</scope> |
| 111 | </dependency> |
Michael Blow | 5543132 | 2019-02-15 19:06:27 -0500 | [diff] [blame] | 112 | <dependency> |
| 113 | <groupId>org.apache.hyracks</groupId> |
| 114 | <artifactId>hyracks-test-support</artifactId> |
| 115 | <version>${project.version}</version> |
| 116 | <scope>test</scope> |
| 117 | </dependency> |
Abdullah Alamoudi | 60e7f12 | 2017-01-25 19:16:46 -0800 | [diff] [blame] | 118 | </dependencies> |
Michael Blow | 23d990c | 2019-03-27 22:11:26 -0400 | [diff] [blame] | 119 | </project> |