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
<artifactId >rest-common-client</artifactId >
4
5
<name >rest-common-client</name >
41
42
<dependency >
42
43
<groupId >org.apache.httpcomponents</groupId >
43
44
<artifactId >httpclient</artifactId >
44
- <version >${httpclient.version} </version >
45
45
<exclusions >
46
46
<exclusion >
47
47
<artifactId >commons-logging</artifactId >
55
55
<dependency >
56
56
<groupId >org.springframework</groupId >
57
57
<artifactId >spring-core</artifactId >
58
- <version >${spring.version} </version >
59
58
<exclusions >
60
59
<exclusion >
61
60
<artifactId >commons-logging</artifactId >
66
65
<dependency >
67
66
<groupId >org.springframework</groupId >
68
67
<artifactId >spring-context</artifactId >
69
- <version >${spring.version} </version >
70
68
</dependency >
71
69
<dependency >
72
70
<groupId >org.springframework</groupId >
73
71
<artifactId >spring-beans</artifactId >
74
- <version >${spring.version} </version >
75
72
</dependency >
76
73
<dependency >
77
74
<groupId >org.springframework</groupId >
78
75
<artifactId >spring-expression</artifactId >
79
- <version >${spring.version} </version >
80
76
</dependency >
81
77
<dependency >
82
78
<groupId >org.springframework</groupId >
83
79
<artifactId >spring-oxm</artifactId >
84
- <version >${spring.version} </version >
85
80
</dependency >
86
-
81
+
87
82
<!-- may be unnecessary - check -->
88
83
<dependency >
89
84
<groupId >org.springframework</groupId >
90
85
<artifactId >spring-aspects</artifactId >
91
- <version >${spring.version} </version >
92
86
</dependency >
93
87
<dependency >
94
88
<groupId >org.springframework</groupId >
95
89
<artifactId >spring-aop</artifactId >
96
- <version >${spring.version} </version >
97
90
</dependency >
98
91
99
92
<dependency >
100
93
<groupId >org.springframework</groupId >
101
94
<artifactId >spring-web</artifactId >
102
- <version >${spring.version} </version >
103
95
</dependency >
104
96
105
97
<!-- security -->
106
98
107
99
<dependency >
108
100
<groupId >org.springframework.security</groupId >
109
101
<artifactId >spring-security-config</artifactId >
110
- <version >${spring-security.version} </version >
111
102
</dependency >
112
103
113
104
<!-- validation -->
120
111
<dependency >
121
112
<groupId >org.hibernate</groupId >
122
113
<artifactId >hibernate-validator</artifactId >
123
- <version >${hibernate-validator.version} </version >
124
114
</dependency >
125
115
126
116
<!-- marshalling -->
127
117
128
118
<dependency >
129
119
<groupId >com.fasterxml.jackson.core</groupId >
130
120
<artifactId >jackson-databind</artifactId >
131
- <version >${jackson.version} </version >
132
121
</dependency >
133
122
134
123
<dependency >
147
136
<dependency >
148
137
<groupId >org.aspectj</groupId >
149
138
<artifactId >aspectjweaver</artifactId >
150
- <version >${aspectjweaver.version} </version >
151
139
<scope >runtime</scope >
152
140
</dependency >
153
141
156
144
<dependency >
157
145
<groupId >org.slf4j</groupId >
158
146
<artifactId >slf4j-api</artifactId >
159
- <version >${org.slf4j.version} </version >
160
147
</dependency >
161
148
<dependency >
162
149
<groupId >ch.qos.logback</groupId >
163
150
<artifactId >logback-classic</artifactId >
164
- <version >${logback.version} </version >
165
151
<!-- <scope>runtime</scope> -->
166
152
</dependency >
167
153
<dependency >
168
154
<groupId >org.slf4j</groupId >
169
155
<artifactId >jcl-over-slf4j</artifactId >
170
- <version >${org.slf4j.version} </version >
171
156
<!-- <scope>runtime</scope> --> <!-- some spring dependencies need to compile against jcl -->
172
157
</dependency >
173
158
<dependency > <!-- needed to bridge to slf4j for projects that use the log4j APIs directly -->
174
159
<groupId >org.slf4j</groupId >
175
160
<artifactId >log4j-over-slf4j</artifactId >
176
- <version >${org.slf4j.version} </version >
177
161
</dependency >
178
162
179
163
<!-- test scoped -->
180
164
181
165
<dependency >
182
166
<groupId >org.springframework</groupId >
183
167
<artifactId >spring-test</artifactId >
184
- <version >${spring.version} </version >
185
168
<scope >test</scope >
186
169
</dependency >
187
170
188
171
<dependency >
189
172
<groupId >junit</groupId >
190
173
<artifactId >junit</artifactId >
191
- <version >${junit.version} </version >
192
174
<scope >test</scope >
193
175
</dependency >
194
176
195
177
<dependency >
196
178
<groupId >org.hamcrest</groupId >
197
179
<artifactId >hamcrest-core</artifactId >
198
- <version >${org.hamcrest.version} </version >
199
180
<scope >test</scope >
200
181
</dependency >
201
182
<dependency >
202
183
<groupId >org.hamcrest</groupId >
203
184
<artifactId >hamcrest-library</artifactId >
204
- <version >${org.hamcrest.version} </version >
205
185
<scope >test</scope >
206
186
</dependency >
207
187
208
188
<dependency >
209
189
<groupId >org.mockito</groupId >
210
190
<artifactId >mockito-core</artifactId >
211
- <version >${mockito.version} </version >
212
191
<scope >test</scope >
213
192
</dependency >
214
193
230
209
<dependency >
231
210
<groupId >com.amazonaws</groupId >
232
211
<artifactId >aws-java-sdk</artifactId >
233
- <version >1.7.8 </version >
212
+ <version >${aws.version} </version >
234
213
<exclusions >
235
214
<exclusion >
236
215
<artifactId >commons-logging</artifactId >
259
238
260
239
<plugins >
261
240
262
- <plugin >
263
- <groupId >org.apache.maven.plugins</groupId >
264
- <artifactId >maven-surefire-plugin</artifactId >
265
- <configuration >
266
- <excludes >
267
- <exclude >**/*LiveTest.java</exclude >
268
- <exclude >**/*CloudIntegrationTest.java</exclude >
269
- </excludes >
270
- <systemPropertyVariables >
271
- <persistenceTarget >h2</persistenceTarget >
272
- </systemPropertyVariables >
273
- </configuration >
274
- </plugin >
241
+ <!-- <plugin> -- >
242
+ <!-- <groupId>org.apache.maven.plugins</groupId> -- >
243
+ <!-- <artifactId>maven-surefire-plugin</artifactId> -- >
244
+ <!-- <configuration> -- >
245
+ <!-- <excludes> -- >
246
+ <!-- <exclude>**/*LiveTest.java</exclude> -- >
247
+ <!-- <exclude>**/*CloudIntegrationTest.java</exclude> -- >
248
+ <!-- </excludes> -- >
249
+ <!-- <systemPropertyVariables> -- >
250
+ <!-- <persistenceTarget>h2</persistenceTarget> -- >
251
+ <!-- </systemPropertyVariables> -- >
252
+ <!-- </configuration> -- >
253
+ <!-- </plugin> -- >
275
254
276
255
</plugins >
277
256
278
257
</build >
279
258
259
+ <properties >
260
+ <aws .version>1.10.10</aws .version>
261
+ </properties >
262
+
280
263
</project >
0 commit comments