Project

General

Profile

« Previous | Next » 

Revision 50509

upgraded version of jdbc driver for postgres, this includes a lot of changes, Because we have to add @transactional
annotation in some properties to avoid connection closed exception

View differences:

pom.xml
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3 3
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet45-container-parent</artifactId>
7
		<version>1.0.0-SNAPSHOT</version>
8
		<relativePath></relativePath>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-container-openaireplus</artifactId>
13
	<packaging>war</packaging>
14
	<version>3.0.0-SNAPSHOT</version>
15
	<dependencies>
4
    <parent>
5
        <groupId>eu.dnetlib</groupId>
6
        <artifactId>dnet45-container-parent</artifactId>
7
        <version>1.0.0-SNAPSHOT</version>
8
        <relativePath></relativePath>
9
    </parent>
10
    <modelVersion>4.0.0</modelVersion>
11
    <groupId>eu.dnetlib</groupId>
12
    <artifactId>dnet-container-openaireplus</artifactId>
13
    <packaging>war</packaging>
14
    <version>3.0.0-SNAPSHOT</version>
15
    <dependencies>
16 16

  
17 17

  
18
		<dependency>
19
			<groupId>eu.dnetlib</groupId>
20
			<artifactId>dnet-objectStore-ui</artifactId>
21
			<version>[1.0.0,2.0.0)</version>
22
		</dependency>
18
        <dependency>
19
            <groupId>eu.dnetlib</groupId>
20
            <artifactId>dnet-objectStore-ui</artifactId>
21
            <version>[1.0.0,2.0.0)</version>
22
        </dependency>
23 23

  
24 24

  
25
		<!-- Common components in every container -->
26
		<dependency>
27
			<groupId>eu.dnetlib</groupId>
28
			<artifactId>cnr-log4j-inspector</artifactId>
29
			<version>[1.0.0,2.0.0)</version>
30
		</dependency>
31
		<dependency>
32
			<groupId>eu.dnetlib</groupId>
33
			<artifactId>dnet-schemas</artifactId>
34
			<version>[1.0.0,2.0.0)</version>
35
		</dependency>
25
        <!-- Common components in every container -->
26
        <dependency>
27
            <groupId>eu.dnetlib</groupId>
28
            <artifactId>cnr-log4j-inspector</artifactId>
29
            <version>[1.0.0,2.0.0)</version>
30
        </dependency>
31
        <dependency>
32
            <groupId>eu.dnetlib</groupId>
33
            <artifactId>dnet-schemas</artifactId>
34
            <version>[1.0.0,2.0.0)</version>
35
        </dependency>
36 36

  
37
		<!-- Common services in every container -->
38
		<dependency>
39
			<groupId>eu.dnetlib</groupId>
40
			<artifactId>cnr-enabling-hnm-service</artifactId>
41
			<version>[2.0.0,3.0.0)</version>
42
		</dependency>
43
		<dependency>
44
			<groupId>eu.dnetlib</groupId>
45
			<artifactId>cnr-enabling-hcm-service</artifactId>
46
			<version>[2.0.0,3.0.0)</version>
47
		</dependency>
37
        <!-- Common services in every container -->
38
        <dependency>
39
            <groupId>eu.dnetlib</groupId>
40
            <artifactId>cnr-enabling-hnm-service</artifactId>
41
            <version>[2.0.0,3.0.0)</version>
42
        </dependency>
43
        <dependency>
44
            <groupId>eu.dnetlib</groupId>
45
            <artifactId>cnr-enabling-hcm-service</artifactId>
46
            <version>[2.0.0,3.0.0)</version>
47
        </dependency>
48 48

  
49
		<!-- Enabling services service -->
50
		<dependency>
51
			<groupId>eu.dnetlib</groupId>
52
			<artifactId>cnr-enabling-services</artifactId>
53
			<version>[2.0.0,3.0.0)</version>
54
			<exclusions>
55
				<exclusion>
56
					<groupId>apache</groupId>
57
					<artifactId>commons-pool</artifactId>
58
				</exclusion>
59
			</exclusions>
60
		</dependency>
61
		<dependency>
62
			<groupId>eu.dnetlib</groupId>
63
			<artifactId>cnr-enabling-inspector</artifactId>
64
			<version>[2.0.0,3.0.0)</version>
65
		</dependency>
66
		<dependency>
67
			<groupId>eu.dnetlib</groupId>
68
			<artifactId>cnr-resultset-inspector</artifactId>
69
			<version>[2.0.0,3.0.0)</version>
70
		</dependency>
49
        <!-- Enabling services service -->
50
        <dependency>
51
            <groupId>eu.dnetlib</groupId>
52
            <artifactId>cnr-enabling-services</artifactId>
53
            <version>[2.0.0,3.0.0)</version>
54
            <exclusions>
55
                <exclusion>
56
                    <groupId>apache</groupId>
57
                    <artifactId>commons-pool</artifactId>
58
                </exclusion>
59
            </exclusions>
60
        </dependency>
61
        <dependency>
62
            <groupId>eu.dnetlib</groupId>
63
            <artifactId>cnr-enabling-inspector</artifactId>
64
            <version>[2.0.0,3.0.0)</version>
65
        </dependency>
66
        <dependency>
67
            <groupId>eu.dnetlib</groupId>
68
            <artifactId>cnr-resultset-inspector</artifactId>
69
            <version>[2.0.0,3.0.0)</version>
70
        </dependency>
71 71

  
72
		<!-- Manager Service Resource Orchestration (required for workflows) -->
73
		<dependency>
74
			<groupId>eu.dnetlib</groupId>
75
			<artifactId>dnet-msro-service</artifactId>
76
			<version>[3.0.0,4.0.0)</version>
77
		</dependency>
78
		<dependency>
79
			<groupId>eu.dnetlib</groupId>
80
			<artifactId>dnet-mongo-logging</artifactId>
81
			<version>[2.0.0,3.0.0)</version>
82
		</dependency>
72
        <!-- Manager Service Resource Orchestration (required for workflows) -->
73
        <dependency>
74
            <groupId>eu.dnetlib</groupId>
75
            <artifactId>dnet-msro-service</artifactId>
76
            <version>[3.0.0,4.0.0)</version>
77
        </dependency>
78
        <dependency>
79
            <groupId>eu.dnetlib</groupId>
80
            <artifactId>dnet-mongo-logging</artifactId>
81
            <version>[2.0.0,3.0.0)</version>
82
        </dependency>
83 83

  
84
		<!-- Modular User Interfaces -->
85
		<dependency>
86
			<groupId>eu.dnetlib</groupId>
87
			<artifactId>dnet-modular-ui</artifactId>
88
			<version>[3.0.0,4.0.0)</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>eu.dnetlib</groupId>
92
			<artifactId>dnet-modular-workflows-ui</artifactId>
93
			<version>[4.0.0,5.0.0)</version>
94
		</dependency>
95
		<dependency>
96
			<groupId>eu.dnetlib</groupId>
97
			<artifactId>dnet-modular-is-ui</artifactId>
98
			<version>[2.0.1,3.0.0)</version>
99
		</dependency>
100
		<dependency>
101
			<groupId>eu.dnetlib</groupId>
102
			<artifactId>dnet-modular-repositories-ui</artifactId>
103
			<version>[4.0.0,5.0.0)</version>
104
		</dependency>
105
		<dependency>
106
			<groupId>eu.dnetlib</groupId>
107
			<artifactId>dnet-modular-oai-explorer-ui</artifactId>
108
			<version>[2.0.0,3.0.0)</version>
109
		</dependency>
110
		<dependency>
111
			<groupId>eu.dnetlib</groupId>
112
			<artifactId>dnet-oai-modular-ui</artifactId>
113
			<version>[3.0.0,4.0.0)</version>
114
		</dependency>
115
		<dependency>
116
			<groupId>eu.dnetlib</groupId>
117
			<artifactId>dnet-modular-vocabularies-ui</artifactId>
118
			<version>[2.0.1,3.0.0)</version>
119
		</dependency>
120
		<dependency>
121
			<groupId>eu.dnetlib</groupId>
122
			<artifactId>dnet-modular-cleaning-rules-ui</artifactId>
123
			<version>[2.0.0,3.0.0)</version>
124
		</dependency>
125
		<dependency>
126
			<groupId>eu.dnetlib</groupId>
127
			<artifactId>dnet-modular-database-ui</artifactId>
128
			<version>[2.0.0,3.0.0)</version>
129
		</dependency>
130
		<dependency>
131
			<groupId>eu.dnetlib</groupId>
132
			<artifactId>dnet-modular-index-ui</artifactId>
133
			<version>[2.0.1,3.0.0)</version>
134
		</dependency>
84
        <!-- Modular User Interfaces -->
85
        <dependency>
86
            <groupId>eu.dnetlib</groupId>
87
            <artifactId>dnet-modular-ui</artifactId>
88
            <version>[3.0.0,4.0.0)</version>
89
        </dependency>
90
        <dependency>
91
            <groupId>eu.dnetlib</groupId>
92
            <artifactId>dnet-modular-workflows-ui</artifactId>
93
            <version>[4.0.0,5.0.0)</version>
94
        </dependency>
95
        <dependency>
96
            <groupId>eu.dnetlib</groupId>
97
            <artifactId>dnet-modular-is-ui</artifactId>
98
            <version>[2.0.1,3.0.0)</version>
99
        </dependency>
100
        <dependency>
101
            <groupId>eu.dnetlib</groupId>
102
            <artifactId>dnet-modular-repositories-ui</artifactId>
103
            <version>[4.0.0,5.0.0)</version>
104
        </dependency>
105
        <dependency>
106
            <groupId>eu.dnetlib</groupId>
107
            <artifactId>dnet-modular-oai-explorer-ui</artifactId>
108
            <version>[2.0.0,3.0.0)</version>
109
        </dependency>
110
        <dependency>
111
            <groupId>eu.dnetlib</groupId>
112
            <artifactId>dnet-oai-modular-ui</artifactId>
113
            <version>[3.0.0,4.0.0)</version>
114
        </dependency>
115
        <dependency>
116
            <groupId>eu.dnetlib</groupId>
117
            <artifactId>dnet-modular-vocabularies-ui</artifactId>
118
            <version>[2.0.1,3.0.0)</version>
119
        </dependency>
120
        <dependency>
121
            <groupId>eu.dnetlib</groupId>
122
            <artifactId>dnet-modular-cleaning-rules-ui</artifactId>
123
            <version>[2.0.0,3.0.0)</version>
124
        </dependency>
125
        <dependency>
126
            <groupId>eu.dnetlib</groupId>
127
            <artifactId>dnet-modular-database-ui</artifactId>
128
            <version>[2.0.0,3.0.0)</version>
129
        </dependency>
130
        <dependency>
131
            <groupId>eu.dnetlib</groupId>
132
            <artifactId>dnet-modular-index-ui</artifactId>
133
            <version>[2.0.1,3.0.0)</version>
134
        </dependency>
135 135

  
136
		<!-- Aggregation services -->
137
		<dependency>
138
			<groupId>eu.dnetlib</groupId>
139
			<artifactId>cnr-mongo-mdstore</artifactId>
140
			<version>[6.0.0-SNAPSHOT,7.0.0)</version>
141
		</dependency>
142
		<dependency>
143
			<groupId>eu.dnetlib</groupId>
144
			<artifactId>dnet-modular-collector-service</artifactId>
145
			<version>[3.0.0,4.0.0)</version>
146
		</dependency>
147
		<!-- 		<dependency> -->
148
		<!-- 			<groupId>eu.dnetlib</groupId> -->
149
		<!-- 			<artifactId>dnet-gridfs-objectstore</artifactId> -->
150
		<!-- 			<version>[4.0.0,5.0.0)</version> -->
151
		<!-- 			<exclusions> -->
152
		<!--                <exclusion> -->
153
		<!--                    <groupId>apache</groupId> -->
154
		<!--                    <artifactId>commons-net</artifactId> -->
155
		<!--                    </exclusion> -->
156
		<!--                </exclusions> -->
157
		<!-- 		</dependency> -->
136
        <!-- Aggregation services -->
137
        <dependency>
138
            <groupId>eu.dnetlib</groupId>
139
            <artifactId>cnr-mongo-mdstore</artifactId>
140
            <version>[6.0.0-SNAPSHOT,7.0.0)</version>
141
        </dependency>
142
        <dependency>
143
            <groupId>eu.dnetlib</groupId>
144
            <artifactId>dnet-modular-collector-service</artifactId>
145
            <version>[3.0.0,4.0.0)</version>
146
        </dependency>
147
        <!-- 		<dependency> -->
148
        <!-- 			<groupId>eu.dnetlib</groupId> -->
149
        <!-- 			<artifactId>dnet-gridfs-objectstore</artifactId> -->
150
        <!-- 			<version>[4.0.0,5.0.0)</version> -->
151
        <!-- 			<exclusions> -->
152
        <!--                <exclusion> -->
153
        <!--                    <groupId>apache</groupId> -->
154
        <!--                    <artifactId>commons-net</artifactId> -->
155
        <!--                    </exclusion> -->
156
        <!--                </exclusions> -->
157
        <!-- 		</dependency> -->
158 158

  
159 159

  
160
		<dependency>
161
			<groupId>eu.dnetlib</groupId>
162
			<artifactId>dnet-fs-objectstore</artifactId>
163
			<version>[2.0.0,3.0.0)</version>
164
		</dependency>
160
        <dependency>
161
            <groupId>eu.dnetlib</groupId>
162
            <artifactId>dnet-fs-objectstore</artifactId>
163
            <version>[2.0.0,3.0.0)</version>
164
        </dependency>
165 165

  
166
		<dependency>
167
			<groupId>eu.dnetlib</groupId>
168
			<artifactId>dnet-data-transformation-service</artifactId>
169
			<version>[3.0.0,4.0.0)</version>
170
		</dependency>
166
        <dependency>
167
            <groupId>eu.dnetlib</groupId>
168
            <artifactId>dnet-data-transformation-service</artifactId>
169
            <version>[3.0.0,4.0.0)</version>
170
        </dependency>
171 171

  
172
		<dependency>
173
			<groupId>eu.dnetlib</groupId>
174
			<artifactId>cnr-enabling-database-service</artifactId>
175
			<version>[3.0.0,4.0.0)</version>
176
		</dependency>
177
		<dependency>
178
			<groupId>eu.dnetlib</groupId>
179
			<artifactId>dnet-openaireplus-profiles</artifactId>
180
			<version>[1.0.0,2.0.0)</version>
181
		</dependency>
182
		<dependency>
183
			<groupId>eu.dnetlib</groupId>
184
			<artifactId>cnr-data-utility-cleaner-service</artifactId>
185
			<version>[3.0.0,4.0.0)</version>
186
		</dependency>
187
		<dependency>
188
			<groupId>eu.dnetlib</groupId>
189
			<artifactId>dnet-openaireplus-workflows</artifactId>
190
			<version>[6.0.0,7.0.0)</version>
191
		</dependency>
172
        <dependency>
173
            <groupId>eu.dnetlib</groupId>
174
            <artifactId>cnr-enabling-database-service</artifactId>
175
            <version>[3.0.0,4.0.0)</version>
176
        </dependency>
177
        <dependency>
178
            <groupId>eu.dnetlib</groupId>
179
            <artifactId>dnet-openaireplus-profiles</artifactId>
180
            <version>[1.0.0,2.0.0)</version>
181
        </dependency>
182
        <dependency>
183
            <groupId>eu.dnetlib</groupId>
184
            <artifactId>cnr-data-utility-cleaner-service</artifactId>
185
            <version>[3.0.0,4.0.0)</version>
186
        </dependency>
187
        <dependency>
188
            <groupId>eu.dnetlib</groupId>
189
            <artifactId>dnet-openaireplus-workflows</artifactId>
190
            <version>[6.0.0,7.0.0)</version>
191
        </dependency>
192 192

  
193
                <dependency>
194
                  <groupId>eu.dnetlib</groupId>
195
		  <artifactId>dnet-openaireplus-mapping-utils</artifactId>
196
		  <version>[6.1.0,7.0.0]</version>
197
		</dependency>
193
        <dependency>
194
            <groupId>eu.dnetlib</groupId>
195
            <artifactId>dnet-openaireplus-mapping-utils</artifactId>
196
            <version>[6.1.0,7.0.0]</version>
197
        </dependency>
198 198

  
199
                <dependency>
200
                   <groupId>eu.dnetlib</groupId>
201
                   <artifactId>dnet-index-solr-common</artifactId>
202
                   <version>[1.3.2-SNAPSHOT]</version>
203
                </dependency>
199
        <dependency>
200
            <groupId>eu.dnetlib</groupId>
201
            <artifactId>dnet-index-solr-common</artifactId>
202
            <version>[1.3.2-SNAPSHOT]</version>
203
        </dependency>
204 204

  
205
		<dependency>
206
			<groupId>eu.dnetlib</groupId>
207
			<artifactId>dnet-deduplication</artifactId>
208
			<version>[1.0.0,2.0.0)</version>
209
		</dependency>
210
		<dependency>
211
			<groupId>eu.dnetlib</groupId>
212
			<artifactId>dnet-hadoop-service</artifactId>
213
			<version>[2.0.0,3.0.0)</version>
214
			<exclusions>
215
				<exclusion>
216
					<groupId>org.jruby</groupId>
217
					<artifactId>jruby-complete</artifactId>
218
				</exclusion>
219
			</exclusions>
220
		</dependency>
221
		<dependency>
222
			<groupId>eu.dnetlib</groupId>
223
			<artifactId>dnet-actionmanager-service</artifactId>
224
			<version>[5.0.0,6.0.0)</version>
225
		</dependency>
226
		<dependency>
227
			<groupId>eu.dnetlib</groupId>
228
			<artifactId>dnet-download-service</artifactId>
229
			<version>[2.0.0,3.0.0)</version>
230
		</dependency>
231
		<dependency>
232
			<groupId>eu.dnetlib</groupId>
233
			<artifactId>dnet-download-plugins</artifactId>
234
			<version>[2.0.0,3.0.0)</version>
235
		</dependency>
205
        <dependency>
206
            <groupId>eu.dnetlib</groupId>
207
            <artifactId>dnet-deduplication</artifactId>
208
            <version>[1.0.0,2.0.0)</version>
209
        </dependency>
210
        <dependency>
211
            <groupId>eu.dnetlib</groupId>
212
            <artifactId>dnet-hadoop-service</artifactId>
213
            <version>[2.0.0,3.0.0)</version>
214
            <exclusions>
215
                <exclusion>
216
                    <groupId>org.jruby</groupId>
217
                    <artifactId>jruby-complete</artifactId>
218
                </exclusion>
219
            </exclusions>
220
        </dependency>
221
        <dependency>
222
            <groupId>eu.dnetlib</groupId>
223
            <artifactId>dnet-actionmanager-service</artifactId>
224
            <version>[5.0.0,6.0.0)</version>
225
        </dependency>
226
        <dependency>
227
            <groupId>eu.dnetlib</groupId>
228
            <artifactId>dnet-download-service</artifactId>
229
            <version>[2.0.0,3.0.0)</version>
230
        </dependency>
231
        <dependency>
232
            <groupId>eu.dnetlib</groupId>
233
            <artifactId>dnet-download-plugins</artifactId>
234
            <version>[2.0.0,3.0.0)</version>
235
        </dependency>
236 236

  
237
		<dependency>
238
			<groupId>eu.dnetlib</groupId>
239
			<artifactId>cnr-inspector-security</artifactId>
240
			<version>[1.0.0,2.0.0)</version>
241
		</dependency>
242
		<dependency>
243
			<groupId>eu.dnetlib</groupId>
244
			<artifactId>dnet-webapp-monitoring</artifactId>
245
			<version>[1.0.0,2.0.0)</version>
246
		</dependency>
237
        <dependency>
238
            <groupId>eu.dnetlib</groupId>
239
            <artifactId>cnr-inspector-security</artifactId>
240
            <version>[1.0.0,2.0.0)</version>
241
        </dependency>
242
        <dependency>
243
            <groupId>eu.dnetlib</groupId>
244
            <artifactId>dnet-webapp-monitoring</artifactId>
245
            <version>[1.0.0,2.0.0)</version>
246
        </dependency>
247 247

  
248
		<dependency>
249
			<groupId>eu.dnetlib</groupId>
250
			<artifactId>dnet-openaire-blacklist</artifactId>
251
			<version>[1.0.0,2.0.0)</version>
252
		</dependency>
248
        <dependency>
249
            <groupId>eu.dnetlib</groupId>
250
            <artifactId>dnet-openaire-blacklist</artifactId>
251
            <version>[1.0.0,2.0.0)</version>
252
        </dependency>
253 253

  
254
		<dependency>
255
			<groupId>eu.dnetlib</groupId>
256
			<artifactId>dnet-modular-mdstore-ui</artifactId>
257
			<version>[1.0.0-SNAPSHOT, 2.0.0)</version>
258
		</dependency>
254
        <dependency>
255
            <groupId>eu.dnetlib</groupId>
256
            <artifactId>dnet-modular-mdstore-ui</artifactId>
257
            <version>[1.0.0-SNAPSHOT, 2.0.0)</version>
258
        </dependency>
259 259

  
260
		<!-- Light-ui for pre-public check -->
261
		<!-- 		<dependency> -->
262
		<!-- 			<groupId>eu.dnetlib</groupId> -->
263
		<!-- 			<artifactId>dnet-modular-lightui-ui</artifactId> -->
264
		<!-- 			<version>[2.0.0,3.0.0)</version> -->
265
		<!-- 		</dependency> -->
260
        <!-- Light-ui for pre-public check -->
261
        <!-- 		<dependency> -->
262
        <!-- 			<groupId>eu.dnetlib</groupId> -->
263
        <!-- 			<artifactId>dnet-modular-lightui-ui</artifactId> -->
264
        <!-- 			<version>[2.0.0,3.0.0)</version> -->
265
        <!-- 		</dependency> -->
266 266

  
267
		<dependency>
268
			<groupId>xerces</groupId>
269
			<artifactId>xercesImpl</artifactId>
270
			<version>2.11.0</version>
271
			<scope>compile</scope>
272
		</dependency>
267
        <dependency>
268
            <groupId>xerces</groupId>
269
            <artifactId>xercesImpl</artifactId>
270
            <version>2.11.0</version>
271
            <scope>compile</scope>
272
        </dependency>
273 273

  
274
		<dependency>
275
			<groupId>eu.dnetlib</groupId>
276
			<artifactId>dnet-mapreduce-jobs</artifactId>
277
			<version>[1.0.0,2.0.0)</version>
278
		</dependency>
274
        <dependency>
275
            <groupId>eu.dnetlib</groupId>
276
            <artifactId>dnet-mapreduce-jobs</artifactId>
277
            <version>[1.0.0,2.0.0)</version>
278
        </dependency>
279 279

  
280
		<dependency>
281
			<groupId>javax.servlet</groupId>
282
			<artifactId>javax.servlet-api</artifactId>
283
			<version>${javax.servlet.version}</version>
284
			<scope>provided</scope>
285
		</dependency>
280
        <dependency>
281
            <groupId>javax.servlet</groupId>
282
            <artifactId>javax.servlet-api</artifactId>
283
            <version>${javax.servlet.version}</version>
284
            <scope>provided</scope>
285
        </dependency>
286 286

  
287
		<!-- SWAGGER -->
288
		<dependency>
289
			<groupId>com.fasterxml.jackson.datatype</groupId>
290
			<artifactId>jackson-datatype-joda</artifactId>
291
			<version>2.6.6</version>
292
			<exclusions>
293
				<exclusion>
294
					<groupId>com.fasterxml.jackson.core</groupId>
295
					<artifactId>jackson-annotations</artifactId>
296
				</exclusion>
297
			</exclusions>
298
		</dependency>
299
		<dependency>
300
			<groupId>joda-time</groupId>
301
			<artifactId>joda-time</artifactId>
302
			<version>2.8.2</version>
303
		</dependency>
287
        <!-- SWAGGER -->
288
        <dependency>
289
            <groupId>com.fasterxml.jackson.datatype</groupId>
290
            <artifactId>jackson-datatype-joda</artifactId>
291
            <version>2.6.6</version>
292
            <exclusions>
293
                <exclusion>
294
                    <groupId>com.fasterxml.jackson.core</groupId>
295
                    <artifactId>jackson-annotations</artifactId>
296
                </exclusion>
297
            </exclusions>
298
        </dependency>
299
        <dependency>
300
            <groupId>joda-time</groupId>
301
            <artifactId>joda-time</artifactId>
302
            <version>2.8.2</version>
303
        </dependency>
304 304

  
305
		<dependency>
306
			<groupId>io.springfox</groupId>
307
			<artifactId>springfox-swagger2</artifactId>
308
			<version>${springfox-version}</version>
309
		</dependency>
310
		<dependency>
311
			<groupId>io.springfox</groupId>
312
			<artifactId>springfox-swagger-ui</artifactId>
313
			<version>${springfox-version}</version>
314
		</dependency>
305
        <dependency>
306
            <groupId>io.springfox</groupId>
307
            <artifactId>springfox-swagger2</artifactId>
308
            <version>${springfox-version}</version>
309
        </dependency>
310
        <dependency>
311
            <groupId>io.springfox</groupId>
312
            <artifactId>springfox-swagger-ui</artifactId>
313
            <version>${springfox-version}</version>
314
        </dependency>
315 315

  
316
		<dependency>
317
			<groupId>org.hibernate</groupId>
318
			<artifactId>hibernate-validator</artifactId>
319
			<version>5.2.4.Final</version>
320
		</dependency>
316
        <dependency>
317
            <groupId>org.hibernate</groupId>
318
            <artifactId>hibernate-validator</artifactId>
319
            <version>5.2.4.Final</version>
320
        </dependency>
321 321

  
322
	</dependencies>
322
    </dependencies>
323 323

  
324
	<properties>
325
	  <springfox-version>2.5.0</springfox-version>
326
	</properties>
324
    <properties>
325
        <springfox-version>2.5.0</springfox-version>
326
    </properties>
327 327

  
328 328
</project>

Also available in: Unified diff