Skip to content

Commit ba3c01c

Browse files
shryhustboychuk
authored andcommitted
GP-83 update pom dependencies
1 parent 5afd21c commit ba3c01c

File tree

5 files changed

+31
-47
lines changed

5 files changed

+31
-47
lines changed

3-0-spring-framework/3-0-0-hello-spring-framework/pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,27 +17,11 @@
1717
<artifactId>spring-context</artifactId>
1818
<version>5.2.12.RELEASE</version>
1919
</dependency>
20-
<dependency>
21-
<groupId>org.springframework</groupId>
22-
<artifactId>spring-test</artifactId>
23-
<version>5.2.12.RELEASE</version>
24-
</dependency>
2520
<dependency>
2621
<groupId>com.bobocode</groupId>
2722
<artifactId>spring-framework-exercises-util</artifactId>
2823
<version>1.0-SNAPSHOT</version>
2924
</dependency>
30-
<dependency>
31-
<groupId>org.hamcrest</groupId>
32-
<artifactId>hamcrest-all</artifactId>
33-
<version>1.3</version>
34-
<scope>test</scope>
35-
</dependency>
36-
<dependency>
37-
<groupId>org.slf4j</groupId>
38-
<artifactId>slf4j-simple</artifactId>
39-
<version>1.7.24</version>
40-
</dependency>
4125
<dependency>
4226
<groupId>com.bobocode</groupId>
4327
<artifactId>spring-framework-exercises-model</artifactId>

3-0-spring-framework/3-1-1-dispatcher-servlet-initializer/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@
1313
<packaging>war</packaging>
1414

1515
<dependencies>
16-
<dependency>
17-
<groupId>org.springframework</groupId>
18-
<artifactId>spring-webmvc</artifactId>
19-
<version>5.2.12.RELEASE</version>
20-
</dependency>
2116
<dependency>
2217
<groupId>javax.servlet</groupId>
2318
<artifactId>javax.servlet-api</artifactId>

3-0-spring-framework/3-2-1-account-rest-api/pom.xml

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -13,52 +13,28 @@
1313
<packaging>war</packaging>
1414

1515
<dependencies>
16-
<dependency>
17-
<groupId>org.springframework</groupId>
18-
<artifactId>spring-webmvc</artifactId>
19-
<version>5.2.12.RELEASE</version>
20-
</dependency>
2116
<dependency>
2217
<groupId>javax.servlet</groupId>
2318
<artifactId>javax.servlet-api</artifactId>
2419
<version>4.0.1</version>
2520
<scope>provided</scope>
2621
</dependency>
27-
<dependency>
28-
<groupId>org.springframework</groupId>
29-
<artifactId>spring-test</artifactId>
30-
<version>5.2.12.RELEASE</version>
31-
</dependency>
32-
<dependency>
33-
<groupId>org.hamcrest</groupId>
34-
<artifactId>hamcrest-all</artifactId>
35-
<version>1.3</version>
36-
<scope>test</scope>
37-
</dependency>
3822
<dependency>
3923
<groupId>com.bobocode</groupId>
4024
<artifactId>spring-framework-exercises-util</artifactId>
4125
<version>1.0-SNAPSHOT</version>
4226
</dependency>
43-
<dependency>
44-
<groupId>com.fasterxml.jackson.core</groupId>
45-
<artifactId>jackson-core</artifactId>
46-
<version>2.12.2</version>
47-
</dependency>
48-
<dependency>
49-
<groupId>com.fasterxml.jackson.core</groupId>
50-
<artifactId>jackson-databind</artifactId>
51-
<version>2.12.2</version>
52-
</dependency>
5327
<dependency>
5428
<groupId>com.jayway.jsonpath</groupId>
5529
<artifactId>json-path</artifactId>
5630
<version>2.3.0</version>
31+
<scope>test</scope>
5732
</dependency>
5833
<dependency>
5934
<groupId>com.jayway.jsonpath</groupId>
6035
<artifactId>json-path-assert</artifactId>
6136
<version>2.3.0</version>
37+
<scope>test</scope>
6238
</dependency>
6339
</dependencies>
6440

3-0-spring-framework/pom.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,27 @@
1919
<module>3-2-1-account-rest-api</module>
2020
</modules>
2121

22+
<dependencies>
23+
<dependency>
24+
<groupId>org.springframework</groupId>
25+
<artifactId>spring-webmvc</artifactId>
26+
<version>5.2.12.RELEASE</version>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.springframework</groupId>
30+
<artifactId>spring-test</artifactId>
31+
<version>5.2.12.RELEASE</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>com.fasterxml.jackson.core</groupId>
35+
<artifactId>jackson-core</artifactId>
36+
<version>2.12.2</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>com.fasterxml.jackson.core</groupId>
40+
<artifactId>jackson-databind</artifactId>
41+
<version>2.12.2</version>
42+
</dependency>
43+
</dependencies>
44+
2245
</project>

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@
5959
<artifactId>reflections</artifactId>
6060
<version>0.9.12</version>
6161
</dependency>
62+
<dependency>
63+
<groupId>org.hamcrest</groupId>
64+
<artifactId>hamcrest-all</artifactId>
65+
<version>1.3</version>
66+
<scope>test</scope>
67+
</dependency>
6268
<dependency>
6369
<groupId>org.mockito</groupId>
6470
<artifactId>mockito-core</artifactId>

0 commit comments

Comments
 (0)