-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
186 lines (172 loc) · 6.56 KB
/
pom.xml
File metadata and controls
186 lines (172 loc) · 6.56 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2020 Zeppelin Bend Pty Ltd
~
~ This Source Code Form is subject to the terms of the Mozilla Public
~ License, v. 2.0. If a copy of the MPL was not distributed with this
~ file, You can obtain one at https://mozilla.org/MPL/2.0/.
-->
<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/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.zepben.maven</groupId>
<artifactId>evolve-super-pom</artifactId>
<version>0.48.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.zepben</groupId>
<artifactId>vertx-utils</artifactId>
<version>1.9.0b2</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>Helpers and utils for working with Vert.x in Zepben projects.</description>
<url>https://github.com/zepben/vertx-utils</url>
<organization>
<name>Zeppelin Bend Pty Ltd.</name>
<url>https://zepben.com</url>
</organization>
<licenses>
<license>
<name>Mozilla Public License v2.0</name>
<url>https://www.mozilla.org/en-US/MPL/2.0/</url>
</license>
</licenses>
<developers>
<developer>
<name>Anthony Charlton</name>
<email>anthony.charlton@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
<developer>
<name>Glenn Carwardine</name>
<email>glenn.carwardine@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
<developer>
<name>Kurt Greaves</name>
<email>kurt.greaves@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
<developer>
<name>Ramon Bouckaert</name>
<email>ramon.bouckaert@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/zepben/vertx-utils.git</connection>
<developerConnection>scm:git:ssh://github.com:zepben/vertx-utils.git</developerConnection>
<url>http://github.com/zepben/vertx-utils/</url>
</scm>
<dependencies>
<dependency>
<groupId>com.zepben</groupId>
<artifactId>annotations</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web</artifactId>
</dependency>
<!--Apache Packages-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!--Testing-->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.zepben</groupId>
<artifactId>test-utils</artifactId>
<version>3.2.0b1</version>
<scope>test</scope>
</dependency>
<!-- Provided dependencies are used for the testing classes we expose to prevent pulling these dependencies
into all project that use them outside the test scope -->
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>5.3.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test</artifactId>
<version>${kotlin.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<!-- This class is mostly generated so coverage testing is pointless -->
<exclude>com/zepben/vertxutils/json/LazyJsonArray.class</exclude>
<exclude>com/zepben/vertxutils/json/LazyJsonObject.class</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<!--suppress MavenModelInspection -->
<artifactId>kotlin-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<configuration>
<sourceDirectories>
<dir>src/main/java</dir>
</sourceDirectories>
</configuration>
</plugin>
</plugins>
</build>
</project>