This repository has been archived by the owner on May 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pom.xml
183 lines (157 loc) · 6.39 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
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2018 Red Hat, Inc.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-parent</artifactId>
<version>4</version>
</parent>
<artifactId>smallrye-rest-client-parent</artifactId>
<version>1.2.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>SmallRye: MicroProfile Rest Client - Parent</name>
<properties>
<version.smallrye.config>1.3.6</version.smallrye.config>
<version.smallrye.faulttolerance>2.0.5</version.smallrye.faulttolerance>
<version.smallrye.metrics>1.1.3</version.smallrye.metrics>
<version.microprofile.restclient>1.2.1</version.microprofile.restclient>
<version.microprofile.config>1.3</version.microprofile.config>
<version.microprofile.faulttolerance>2.0</version.microprofile.faulttolerance>
<version.microprofile.metrics>1.1.1</version.microprofile.metrics>
<version.resteasy>3.6.3.Final</version.resteasy>
<version.cdi>1.2</version.cdi>
<version.weld>2.4.8.Final</version.weld>
<version.shrinkwrap.resolvers>3.1.3</version.shrinkwrap.resolvers>
<!-- Updating WF version causes issues with TCK because JSONB APIs are found in WF (JDK 11 fix?), but impl missing -->
<version.wildfly>13.0.0.Final</version.wildfly>
<version.jboss.servlet>1.0.2.Final</version.jboss.servlet>
<!-- Do not upgrade until https://issues.jboss.org/browse/ARQ-2144 is
fixed -->
<version.testng.jcommander>1.74</version.testng.jcommander>
</properties>
<scm>
<connection>scm:git:[email protected]:smallrye/smallrye-rest-client</connection>
<developerConnection>scm:git:[email protected]:smallrye/smallrye-rest-client</developerConnection>
<url>https://github.com/smallrye/smallrye-rest-client/</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>docs</module>
<module>implementation</module>
<module>testsuite</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- MicroProfile APIs -->
<dependency>
<groupId>org.eclipse.microprofile.rest.client</groupId>
<artifactId>microprofile-rest-client-api</artifactId>
<version>${version.microprofile.restclient}</version>
</dependency>
<dependency>
<groupId>org.eclipse.microprofile.rest.client</groupId>
<artifactId>microprofile-rest-client-tck</artifactId>
<version>${version.microprofile.restclient}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.microprofile.config</groupId>
<artifactId>microprofile-config-api</artifactId>
<version>${version.microprofile.config}</version>
</dependency>
<dependency>
<groupId>org.eclipse.microprofile.metrics</groupId>
<artifactId>microprofile-metrics-api</artifactId>
<version>${version.microprofile.metrics}</version>
</dependency>
<dependency>
<groupId>org.eclipse.microprofile.fault-tolerance</groupId>
<artifactId>microprofile-fault-tolerance-api</artifactId>
<version>${version.microprofile.faulttolerance}</version>
</dependency>
<!-- SmallRye projects -->
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-rest-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-config</artifactId>
<version>${version.smallrye.config}</version>
</dependency>
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-fault-tolerance</artifactId>
<version>${version.smallrye.faulttolerance}</version>
</dependency>
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-metrics</artifactId>
<version>${version.smallrye.metrics}</version>
</dependency>
<!-- Impl. dependencies -->
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>${version.resteasy}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-json-p-provider</artifactId>
<version>${version.resteasy}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.jboss.spec.javax.servlet</groupId>
<artifactId>jboss-servlet-api_3.1_spec</artifactId>
<version>${version.jboss.servlet}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-cdi</artifactId>
<version>${version.resteasy}</version>
</dependency>
<!--Can be removed once TestNG dependency contains JCommander 1.74
or newer -->
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>${version.testng.jcommander}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.weld.servlet</groupId>
<artifactId>weld-servlet-core</artifactId>
<version>${version.weld.core}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- This repository can be removed once TestNG 6.14.3 or newer and JCommander
1.74 or newer appear in Maven Central -->
<!-- For some reason they keep most releases on bintray and we need these
versions for JDK 10 -->
<repositories>
<repository>
<id>jcenter</id>
<name>jcenter</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
</project>