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/xsd/maven-4.0.0.xsd" >
5+ <parent >
6+ <artifactId >3-0-spring-framework</artifactId >
7+ <groupId >com.bobocode</groupId >
8+ <version >1.0-SNAPSHOT</version >
9+ </parent >
10+ <modelVersion >4.0.0</modelVersion >
11+
12+ <artifactId >3-2-1-account-rest-api</artifactId >
13+ <packaging >war</packaging >
14+
15+ <dependencies >
16+ <dependency >
17+ <groupId >javax.servlet</groupId >
18+ <artifactId >javax.servlet-api</artifactId >
19+ <version >4.0.1</version >
20+ <scope >provided</scope >
21+ </dependency >
22+ <dependency >
23+ <groupId >com.bobocode</groupId >
24+ <artifactId >spring-framework-exercises-util</artifactId >
25+ <version >1.0-SNAPSHOT</version >
26+ </dependency >
27+ <dependency >
28+ <groupId >com.jayway.jsonpath</groupId >
29+ <artifactId >json-path</artifactId >
30+ <version >2.3.0</version >
31+ <scope >test</scope >
32+ </dependency >
33+ <dependency >
34+ <groupId >com.jayway.jsonpath</groupId >
35+ <artifactId >json-path-assert</artifactId >
36+ <version >2.3.0</version >
37+ <scope >test</scope >
38+ </dependency >
39+ </dependencies >
40+
41+ <build >
42+ <plugins >
43+
44+ <plugin >
45+ <groupId >org.apache.maven.plugins</groupId >
46+ <artifactId >maven-war-plugin</artifactId >
47+ <version >2.6</version >
48+ <configuration >
49+ <failOnMissingWebXml >false</failOnMissingWebXml >
50+ </configuration >
51+ </plugin >
52+
53+ </plugins >
54+ </build >
55+
56+
57+ </project >
0 commit comments