|
1 | | -<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"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion> |
3 | 4 | <groupId>org.baeldung</groupId> |
4 | 5 | <artifactId>spring-rest</artifactId> |
|
34 | 35 | <version>3.3.2</version> |
35 | 36 | </dependency> |
36 | 37 |
|
37 | | - <!-- web --> |
38 | | - |
39 | | - <!-- marshalling --> |
40 | | - |
41 | | - <dependency> |
42 | | - <groupId>com.fasterxml.jackson.core</groupId> |
43 | | - <artifactId>jackson-databind</artifactId> |
44 | | - <version>${jackson.version}</version> |
45 | | - </dependency> |
46 | | - |
47 | 38 | <!-- test scoped --> |
48 | | - |
49 | | - <dependency> |
50 | | - <groupId>junit</groupId> |
51 | | - <artifactId>junit-dep</artifactId> |
52 | | - <version>${junit.version}</version> |
53 | | - <scope>test</scope> |
54 | | - </dependency> |
55 | | - |
| 39 | + |
56 | 40 | <dependency> |
57 | 41 | <groupId>org.hamcrest</groupId> |
58 | | - <artifactId>hamcrest-core</artifactId> |
| 42 | + <artifactId>hamcrest-library</artifactId> |
59 | 43 | <version>${org.hamcrest.version}</version> |
60 | 44 | <scope>test</scope> |
61 | 45 | </dependency> |
| 46 | + |
62 | 47 | <dependency> |
63 | | - <groupId>org.hamcrest</groupId> |
64 | | - <artifactId>hamcrest-library</artifactId> |
65 | | - <version>${org.hamcrest.version}</version> |
| 48 | + <groupId>junit</groupId> |
| 49 | + <artifactId>junit</artifactId> |
| 50 | + <version>${junit.version}</version> |
66 | 51 | <scope>test</scope> |
67 | 52 | </dependency> |
68 | 53 |
|
|
107 | 92 | </build> |
108 | 93 |
|
109 | 94 | <properties> |
110 | | - <!-- Spring --> |
111 | | - <org.springframework.version>4.0.0.RELEASE</org.springframework.version> |
112 | | - <org.springframework.security.version>3.2.0.RELEASE</org.springframework.security.version> |
113 | | - |
114 | | - <!-- persistence --> |
115 | | - <hibernate.version>4.3.0.Final</hibernate.version> |
116 | | - <mysql-connector-java.version>5.1.27</mysql-connector-java.version> |
117 | | - |
118 | | - <!-- marshalling --> |
119 | | - <jackson.version>2.4.0</jackson.version> |
120 | | - |
121 | 95 | <!-- logging --> |
122 | 96 | <org.slf4j.version>1.7.5</org.slf4j.version> |
123 | 97 | <logback.version>1.0.11</logback.version> |
124 | 98 |
|
125 | 99 | <!-- various --> |
126 | | - <hibernate-validator.version>5.1.1.Final</hibernate-validator.version> |
| 100 | + <hibernate-validator.version>5.1.3.Final</hibernate-validator.version> |
127 | 101 |
|
128 | 102 | <!-- util --> |
129 | 103 | <guava.version>18.0</guava.version> |
130 | 104 | <commons-lang3.version>3.3.2</commons-lang3.version> |
131 | 105 |
|
132 | 106 | <!-- testing --> |
133 | 107 | <org.hamcrest.version>1.3</org.hamcrest.version> |
134 | | - <junit.version>4.11</junit.version> |
135 | | - <mockito.version>1.10.8</mockito.version> |
136 | | - |
137 | | - <httpcore.version>4.3.3</httpcore.version> |
138 | | - <httpclient.version>4.3.4</httpclient.version> |
139 | | - |
140 | | - <rest-assured.version>2.3.2</rest-assured.version> |
| 108 | + <junit.version>4.12</junit.version> |
| 109 | + <mockito.version>1.10.19</mockito.version> |
141 | 110 |
|
142 | 111 | <!-- maven plugins --> |
143 | 112 | <maven-compiler-plugin.version>3.2</maven-compiler-plugin.version> |
144 | 113 | <maven-war-plugin.version>2.5</maven-war-plugin.version> |
145 | | - <maven-surefire-plugin.version>2.17</maven-surefire-plugin.version> |
| 114 | + <maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version> |
146 | 115 | <maven-resources-plugin.version>2.7</maven-resources-plugin.version> |
147 | 116 |
|
148 | 117 | </properties> |
|
0 commit comments