-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
80 lines (71 loc) · 2.3 KB
/
Copy pathpom.xml
File metadata and controls
80 lines (71 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.coreoz</groupId>
<artifactId>http-gateway-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>http-gateway-core</artifactId>
<packaging>jar</packaging>
<name>HTTP Gateway Core</name>
<description>The core HTTP Gateway component that will proxy incoming HTTP requests to upstream servers</description>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.playframework</groupId>
<artifactId>play-server_3</artifactId>
</dependency>
<dependency>
<groupId>org.playframework</groupId>
<artifactId>play-netty-server_3</artifactId>
</dependency>
<dependency>
<groupId>org.playframework</groupId>
<artifactId>play-java_3</artifactId>
</dependency>
<!-- Pour avoir les mêmes versions de Jackson dans Play et Plume Framework -->
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-scala_3</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-parameter-names</artifactId>
</dependency>
<dependency>
<groupId>org.asynchttpclient</groupId>
<artifactId>async-http-client</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver-dns</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<classifier>linux-x86_64</classifier>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<!-- unit testing -->
<dependency>
<groupId>com.coreoz</groupId>
<artifactId>http-gateway-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>