-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
93 lines (73 loc) · 2.89 KB
/
pom.xml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
<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>
<groupId>com.fizzed</groupId>
<artifactId>ninja-undertow-parent</artifactId>
<version>6.2.2-2-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>com.fizzed</groupId>
<artifactId>maven-parent</artifactId>
<version>2.1.0</version>
</parent>
<properties>
<ninja.version>6.2.2</ninja.version>
<!-- workaround travis ci maven version requirement -->
<maven.enforce.version>3.2.5</maven.enforce.version>
<java.version>1.8</java.version>
</properties>
<scm>
<url>https://github.com/fizzed/ninja-undertow.git</url>
<connection>scm:git:git@github.com:fizzed/ninja-undertow.git</connection>
<tag>HEAD</tag>
</scm>
<modules>
<module>ninja-undertow</module>
<module>ninja-benchmark</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.ninjaframework</groupId>
<artifactId>ninja-core</artifactId>
<version>${ninja.version}</version>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>ninja-undertow</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-core</artifactId>
<version>2.0.1.Final</version>
</dependency>
<!-- testing & benchmarks -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.10.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>3.10.0</version>
</dependency>
<dependency>
<groupId>org.ninjaframework</groupId>
<artifactId>ninja-standalone</artifactId>
<version>${ninja.version}</version>
</dependency>
<!-- testing -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>java-hamcrest</artifactId>
<version>2.0.0.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>