1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+ <artifactId >rest-assured-2</artifactId >
7
+ <version >1.0</version >
8
+ <name >rest-assured-2</name >
9
+
10
+ <parent >
11
+ <groupId >com.baeldung</groupId >
12
+ <artifactId >parent-boot-3</artifactId >
13
+ <version >0.0.1-SNAPSHOT</version >
14
+ <relativePath >../../parent-boot-3</relativePath >
15
+ </parent >
16
+
17
+ <dependencies >
18
+ <dependency >
19
+ <groupId >org.springframework.boot</groupId >
20
+ <artifactId >spring-boot-starter-web</artifactId >
21
+ </dependency >
22
+ <dependency >
23
+ <groupId >org.springframework.boot</groupId >
24
+ <artifactId >spring-boot-starter-json</artifactId >
25
+ </dependency >
26
+ <dependency >
27
+ <groupId >org.springframework.boot</groupId >
28
+ <artifactId >spring-boot-starter-test</artifactId >
29
+ <scope >test</scope >
30
+ </dependency >
31
+ <dependency >
32
+ <groupId >jakarta.servlet</groupId >
33
+ <artifactId >jakarta.servlet-api</artifactId >
34
+ <version >${jakarta.servlet-api.version} </version >
35
+ <scope >provided</scope >
36
+ </dependency >
37
+ <dependency >
38
+ <groupId >org.eclipse.jetty</groupId >
39
+ <artifactId >jetty-security</artifactId >
40
+ <version >${jetty.version} </version >
41
+ </dependency >
42
+ <dependency >
43
+ <groupId >org.eclipse.jetty</groupId >
44
+ <artifactId >jetty-servlet</artifactId >
45
+ <version >${jetty.version} </version >
46
+ </dependency >
47
+ <dependency >
48
+ <groupId >org.eclipse.jetty</groupId >
49
+ <artifactId >jetty-servlets</artifactId >
50
+ <version >${jetty.version} </version >
51
+ </dependency >
52
+ <dependency >
53
+ <groupId >org.eclipse.jetty</groupId >
54
+ <artifactId >jetty-io</artifactId >
55
+ </dependency >
56
+ <dependency >
57
+ <groupId >org.eclipse.jetty</groupId >
58
+ <artifactId >jetty-http</artifactId >
59
+ <version >${jetty.version} </version >
60
+ </dependency >
61
+ <dependency >
62
+ <groupId >org.eclipse.jetty</groupId >
63
+ <artifactId >jetty-server</artifactId >
64
+ <version >${jetty.version} </version >
65
+ </dependency >
66
+ <dependency >
67
+ <groupId >org.eclipse.jetty</groupId >
68
+ <artifactId >jetty-util</artifactId >
69
+ <version >${jetty.version} </version >
70
+ </dependency >
71
+ <dependency >
72
+ <groupId >org.apache.httpcomponents.core5</groupId >
73
+ <artifactId >httpcore5</artifactId >
74
+ <version >${httpcore5.version} </version >
75
+ </dependency >
76
+ <dependency >
77
+ <groupId >org.apache.commons</groupId >
78
+ <artifactId >commons-lang3</artifactId >
79
+ </dependency >
80
+ <dependency >
81
+ <groupId >javax.mail</groupId >
82
+ <artifactId >mail</artifactId >
83
+ <version >${javax.mail.version} </version >
84
+ </dependency >
85
+ <dependency >
86
+ <groupId >com.fasterxml.jackson.core</groupId >
87
+ <artifactId >jackson-annotations</artifactId >
88
+ </dependency >
89
+ <dependency >
90
+ <groupId >com.fasterxml.jackson.core</groupId >
91
+ <artifactId >jackson-databind</artifactId >
92
+ </dependency >
93
+ <dependency >
94
+ <groupId >org.apache.httpcomponents.client5</groupId >
95
+ <artifactId >httpclient5</artifactId >
96
+ <version >${httpclient5.version} </version >
97
+ </dependency >
98
+ <dependency >
99
+ <groupId >org.wiremock</groupId >
100
+ <artifactId >wiremock-standalone</artifactId >
101
+ <version >${wiremock.version} </version >
102
+ </dependency >
103
+ <dependency >
104
+ <groupId >commons-collections</groupId >
105
+ <artifactId >commons-collections</artifactId >
106
+ <version >${commons-collections.version} </version >
107
+ </dependency >
108
+ <!-- Rest Assured Dependencies -->
109
+ <dependency >
110
+ <groupId >io.rest-assured</groupId >
111
+ <artifactId >rest-assured</artifactId >
112
+ <version >${rest-assured.version} </version >
113
+ <scope >test</scope >
114
+ </dependency >
115
+ <dependency >
116
+ <groupId >io.rest-assured</groupId >
117
+ <artifactId >spring-mock-mvc</artifactId >
118
+ <version >${rest-assured.version} </version >
119
+ <scope >test</scope >
120
+ </dependency >
121
+ <dependency >
122
+ <groupId >io.rest-assured</groupId >
123
+ <artifactId >rest-assured-all</artifactId >
124
+ <version >${rest-assured.version} </version >
125
+ <scope >test</scope >
126
+ </dependency >
127
+ <dependency >
128
+ <groupId >com.github.scribejava</groupId >
129
+ <artifactId >scribejava-apis</artifactId >
130
+ <version >${scribejava.version} </version >
131
+ <scope >test</scope >
132
+ </dependency >
133
+ <dependency >
134
+ <groupId >org.skyscreamer</groupId >
135
+ <artifactId >jsonassert</artifactId >
136
+ <version >${json.assert.version} </version >
137
+ <scope >test</scope >
138
+ </dependency >
139
+ <dependency >
140
+ <groupId >net.javacrumbs.json-unit</groupId >
141
+ <artifactId >json-unit-assertj</artifactId >
142
+ <version >${json.unit.version} </version >
143
+ <scope >test</scope >
144
+ </dependency >
145
+ <dependency >
146
+ <groupId >net.javacrumbs.json-unit</groupId >
147
+ <artifactId >json-unit</artifactId >
148
+ <version >${json.unit.version} </version >
149
+ <scope >test</scope >
150
+ </dependency >
151
+ <dependency >
152
+ <groupId >uk.org.webcompere</groupId >
153
+ <artifactId >model-assert</artifactId >
154
+ <version >${model.assert.version} </version >
155
+ </dependency >
156
+ <dependency >
157
+ <groupId >uk.co.datumedge</groupId >
158
+ <artifactId >hamcrest-json</artifactId >
159
+ <version >${hamcrest.json.version} </version >
160
+ </dependency >
161
+ <dependency >
162
+ <groupId >io.rest-assured</groupId >
163
+ <artifactId >json-schema-validator</artifactId >
164
+ <version >${rest-assured.version} </version >
165
+ <scope >test</scope >
166
+ </dependency >
167
+ </dependencies >
168
+
169
+ <build >
170
+ <plugins >
171
+ <plugin >
172
+ <groupId >org.apache.maven.plugins</groupId >
173
+ <artifactId >maven-compiler-plugin</artifactId >
174
+ <configuration >
175
+ <compilerArgs >
176
+ <arg >-parameters</arg >
177
+ </compilerArgs >
178
+ </configuration >
179
+ </plugin >
180
+ </plugins >
181
+ </build >
182
+
183
+ <properties >
184
+ <jakarta .servlet-api.version>6.1.0</jakarta .servlet-api.version>
185
+ <javax .mail.version>1.4.7</javax .mail.version>
186
+ <jetty .version>9.4.0.v20161208</jetty .version>
187
+ <commons-collections .version>3.2.2</commons-collections .version>
188
+ <httpcore5 .version>5.2.5</httpcore5 .version>
189
+ <httpclient5 .version>5.2.3</httpclient5 .version>
190
+ <wiremock .version>3.9.1</wiremock .version>
191
+ <scribejava .version>2.5.3</scribejava .version>
192
+ <rest-assured .version>5.5.0</rest-assured .version>
193
+ <json .assert.version>1.5.3</json .assert.version>
194
+ <json .unit.version>3.4.1</json .unit.version>
195
+ <model .assert.version>1.0.3</model .assert.version>
196
+ <hamcrest .json.version>0.2</hamcrest .json.version>
197
+ </properties >
198
+
199
+ </project >
0 commit comments