forked from jpuigsegur/spring-cloud-netflix-sample
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.txt
More file actions
1568 lines (1543 loc) · 206 KB
/
Copy pathbuild.txt
File metadata and controls
1568 lines (1543 loc) · 206 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
fanhonglingdeMacBook-Pro:msa-sms fanhongling$ mvn clean install spring-boot:repackage
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building msa-sms 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ msa-sms ---
[INFO] Deleting /Users/fanhongling/Downloads/workspace/src/github.com/jpuigsegur/spring-cloud-netflix-sample/msa-sms/target
[INFO]
[INFO] --- properties-maven-plugin:1.0.0:set-system-properties (default) @ msa-sms ---
[INFO] Set 2 system properties
[INFO]
[INFO] --- jaxb2-maven-plugin:2.3.1:xjc (xjc) @ msa-sms ---
[INFO] Adding 'extension' flag to XJC arguments, since the 'generateEpisode' argument is given. (XJCs 'episode' argument requires that the 'extension' argument is provided).
[INFO] Ignored given or default xjbSources [/Users/fanhongling/Downloads/workspace/src/github.com/jpuigsegur/spring-cloud-netflix-sample/msa-sms/src/main/xjb], since it is not an existent file or directory.
[INFO]
[INFO] --- maven-jaxb2-plugin:0.13.2:generate (default) @ msa-sms ---
[WARNING] You are using forceRegenerate=true in your configuration.
This configuration setting is deprecated and not recommended as it causes problems with incremental builds in IDEs.
Please refer to the following link for more information:
https://github.com/highsource/maven-jaxb2-plugin/wiki/Do-Not-Use-forceRegenerate
Consider removing this setting from your plugin configuration.
[INFO] The [forceRegenerate] switch is turned on, XJC will be executed.
[INFO] Episode file [/Users/fanhongling/Downloads/workspace/src/github.com/jpuigsegur/spring-cloud-netflix-sample/msa-sms/target/generated-sources/xjc/META-INF/sun-jaxb.episode] was augmented with if-exists="true" attributes.
[INFO]
[INFO] --- build-helper-maven-plugin:3.0.0:add-source (add-source) @ msa-sms ---
[INFO] Source directory: /Users/fanhongling/Downloads/workspace/src/github.com/jpuigsegur/spring-cloud-netflix-sample/msa-sms/target/generated-sources/xjc added.
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ msa-sms ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 2 resources
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ msa-sms ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 39 source files to /Users/fanhongling/Downloads/workspace/src/github.com/jpuigsegur/spring-cloud-netflix-sample/msa-sms/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ msa-sms ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/fanhongling/Downloads/workspace/src/github.com/jpuigsegur/spring-cloud-netflix-sample/msa-sms/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ msa-sms ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ msa-sms ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ msa-sms ---
[INFO] Building jar: /Users/fanhongling/Downloads/workspace/src/github.com/jpuigsegur/spring-cloud-netflix-sample/msa-sms/target/msa-sms-0.0.1-SNAPSHOT.jar
[INFO]
[INFO] --- spring-boot-maven-plugin:1.4.6.RELEASE:repackage (default) @ msa-sms ---
[INFO]
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ msa-sms ---
[INFO] Installing /Users/fanhongling/Downloads/workspace/src/github.com/jpuigsegur/spring-cloud-netflix-sample/msa-sms/target/msa-sms-0.0.1-SNAPSHOT.jar to /Users/fanhongling/.m2/repository/github-dot-com-slash-stackdocker/spring-cloud-netflix-sample/msa-sms/0.0.1-SNAPSHOT/msa-sms-0.0.1-SNAPSHOT.jar
[INFO] Installing /Users/fanhongling/Downloads/workspace/src/github.com/jpuigsegur/spring-cloud-netflix-sample/msa-sms/pom.xml to /Users/fanhongling/.m2/repository/github-dot-com-slash-stackdocker/spring-cloud-netflix-sample/msa-sms/0.0.1-SNAPSHOT/msa-sms-0.0.1-SNAPSHOT.pom
[INFO]
[INFO] --- spring-boot-maven-plugin:1.4.6.RELEASE:repackage (default-cli) @ msa-sms ---
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 10.717 s
[INFO] Finished at: 2017-07-15T12:27:24-07:00
[INFO] Final Memory: 44M/365M
[INFO] ------------------------------------------------------------------------
[vagrant@localhost msa-sms]$ mvn clean install spring-boot:repackage
[INFO] Scanning for projects...
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-parent/Camden.SR7/spring-cloud-starter-parent-Camden.SR7.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-parent/Camden.SR7/spring-cloud-starter-parent-Camden.SR7.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-parent/1.4.6.RELEASE/spring-boot-starter-parent-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-parent/1.4.6.RELEASE/spring-boot-starter-parent-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-dependencies/1.4.6.RELEASE/spring-boot-dependencies-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-dependencies/1.4.6.RELEASE/spring-boot-dependencies-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-dependencies/Camden.SR7/spring-cloud-dependencies-Camden.SR7.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-dependencies/Camden.SR7/spring-cloud-dependencies-Camden.SR7.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-dependencies-parent/1.2.3.RELEASE/spring-cloud-dependencies-parent-1.2.3.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-dependencies-parent/1.2.3.RELEASE/spring-cloud-dependencies-parent-1.2.3.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-commons-dependencies/1.1.9.RELEASE/spring-cloud-commons-dependencies-1.1.9.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-commons-dependencies/1.1.9.RELEASE/spring-cloud-commons-dependencies-1.1.9.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-netflix-dependencies/1.2.7.RELEASE/spring-cloud-netflix-dependencies-1.2.7.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-netflix-dependencies/1.2.7.RELEASE/spring-cloud-netflix-dependencies-1.2.7.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-stream-dependencies/Brooklyn.SR3/spring-cloud-stream-dependencies-Brooklyn.SR3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-stream-dependencies/Brooklyn.SR3/spring-cloud-stream-dependencies-Brooklyn.SR3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-dependencies-parent/1.2.2.RELEASE/spring-cloud-dependencies-parent-1.2.2.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-dependencies-parent/1.2.2.RELEASE/spring-cloud-dependencies-parent-1.2.2.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-task-dependencies/1.0.3.RELEASE/spring-cloud-task-dependencies-1.0.3.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-task-dependencies/1.0.3.RELEASE/spring-cloud-task-dependencies-1.0.3.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-dependencies-parent/1.1.1.RELEASE/spring-cloud-dependencies-parent-1.1.1.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-dependencies-parent/1.1.1.RELEASE/spring-cloud-dependencies-parent-1.1.1.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-config-dependencies/1.2.3.RELEASE/spring-cloud-config-dependencies-1.2.3.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-config-dependencies/1.2.3.RELEASE/spring-cloud-config-dependencies-1.2.3.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-consul-dependencies/1.1.4.RELEASE/spring-cloud-consul-dependencies-1.1.4.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-consul-dependencies/1.1.4.RELEASE/spring-cloud-consul-dependencies-1.1.4.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-sleuth-dependencies/1.1.4.RELEASE/spring-cloud-sleuth-dependencies-1.1.4.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-sleuth-dependencies/1.1.4.RELEASE/spring-cloud-sleuth-dependencies-1.1.4.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-zookeeper-dependencies/1.0.4.RELEASE/spring-cloud-zookeeper-dependencies-1.0.4.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-zookeeper-dependencies/1.0.4.RELEASE/spring-cloud-zookeeper-dependencies-1.0.4.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-security-dependencies/1.1.4.RELEASE/spring-cloud-security-dependencies-1.1.4.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-security-dependencies/1.1.4.RELEASE/spring-cloud-security-dependencies-1.1.4.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-dependencies-parent/1.1.2.RELEASE/spring-cloud-dependencies-parent-1.1.2.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-dependencies-parent/1.1.2.RELEASE/spring-cloud-dependencies-parent-1.1.2.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-cloudfoundry-dependencies/1.0.1.RELEASE/spring-cloud-cloudfoundry-dependencies-1.0.1.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-cloudfoundry-dependencies/1.0.1.RELEASE/spring-cloud-cloudfoundry-dependencies-1.0.1.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-bus-dependencies/1.2.2.RELEASE/spring-cloud-bus-dependencies-1.2.2.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-bus-dependencies/1.2.2.RELEASE/spring-cloud-bus-dependencies-1.2.2.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-contract-dependencies/1.0.5.RELEASE/spring-cloud-contract-dependencies-1.0.5.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-contract-dependencies/1.0.5.RELEASE/spring-cloud-contract-dependencies-1.0.5.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-aws-dependencies/1.1.4.RELEASE/spring-cloud-aws-dependencies-1.1.4.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-aws-dependencies/1.1.4.RELEASE/spring-cloud-aws-dependencies-1.1.4.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/amazonaws/aws-java-sdk-bom/1.11.83/aws-java-sdk-bom-1.11.83.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/amazonaws/aws-java-sdk-bom/1.11.83/aws-java-sdk-bom-1.11.83.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/amazonaws/aws-java-sdk-pom/1.11.83/aws-java-sdk-pom-1.11.83.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/amazonaws/aws-java-sdk-pom/1.11.83/aws-java-sdk-pom-1.11.83.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-framework-bom/4.3.8.RELEASE/spring-framework-bom-4.3.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-framework-bom/4.3.8.RELEASE/spring-framework-bom-4.3.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/data/spring-data-releasetrain/Hopper-SR10/spring-data-releasetrain-Hopper-SR10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/data/spring-data-releasetrain/Hopper-SR10/spring-data-releasetrain-Hopper-SR10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/data/build/spring-data-build/1.8.10.RELEASE/spring-data-build-1.8.10.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/data/build/spring-data-build/1.8.10.RELEASE/spring-data-build-1.8.10.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/integration/spring-integration-bom/4.3.9.RELEASE/spring-integration-bom-4.3.9.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/integration/spring-integration-bom/4.3.9.RELEASE/spring-integration-bom-4.3.9.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-bom/4.1.4.RELEASE/spring-security-bom-4.1.4.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-bom/4.1.4.RELEASE/spring-security-bom-4.1.4.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/mojo-parent/28/mojo-parent-28.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/mojo-parent/28/mojo-parent-28.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-maven-plugin/1.4.6.RELEASE/spring-boot-maven-plugin-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-maven-plugin/1.4.6.RELEASE/spring-boot-maven-plugin-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-tools/1.4.6.RELEASE/spring-boot-tools-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-tools/1.4.6.RELEASE/spring-boot-tools-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-parent/1.4.6.RELEASE/spring-boot-parent-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-parent/1.4.6.RELEASE/spring-boot-parent-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-maven-plugin/1.4.6.RELEASE/spring-boot-maven-plugin-1.4.6.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-maven-plugin/1.4.6.RELEASE/spring-boot-maven-plugin-1.4.6.RELEASE.jar (0 B at 0.0 KB/sec)
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building msa-sms 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/jaxb2-maven-plugin/2.3.1/jaxb2-maven-plugin-2.3.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/jaxb2-maven-plugin/2.3.1/jaxb2-maven-plugin-2.3.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/glassfish/jaxb/jaxb-bom/2.2.11/jaxb-bom-2.2.11.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/glassfish/jaxb/jaxb-bom/2.2.11/jaxb-bom-2.2.11.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/net/java/jvnet-parent/4/jvnet-parent-4.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/net/java/jvnet-parent/4/jvnet-parent-4.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/jaxb2-maven-plugin/2.3.1/jaxb2-maven-plugin-2.3.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/jaxb2-maven-plugin/2.3.1/jaxb2-maven-plugin-2.3.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/properties-maven-plugin/1.0.0/properties-maven-plugin-1.0.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/properties-maven-plugin/1.0.0/properties-maven-plugin-1.0.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/properties-maven-plugin/1.0.0/properties-maven-plugin-1.0.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/properties-maven-plugin/1.0.0/properties-maven-plugin-1.0.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/jaxws-maven-plugin/2.4.1/jaxws-maven-plugin-2.4.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/jaxws-maven-plugin/2.4.1/jaxws-maven-plugin-2.4.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/jaxws-maven-plugin/2.4.1/jaxws-maven-plugin-2.4.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/jaxws-maven-plugin/2.4.1/jaxws-maven-plugin-2.4.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-plugins/26/maven-plugins-26.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-plugins/26/maven-plugins-26.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/build-helper-maven-plugin/3.0.0/build-helper-maven-plugin-3.0.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/build-helper-maven-plugin/3.0.0/build-helper-maven-plugin-3.0.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/build-helper-maven-plugin/3.0.0/build-helper-maven-plugin-3.0.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/mojo/build-helper-maven-plugin/3.0.0/build-helper-maven-plugin-3.0.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/maven/surefire/surefire/2.18.1/surefire-2.18.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/maven/surefire/surefire/2.18.1/surefire-2.18.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/maven/maven-parent/26/maven-parent-26.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/maven/maven-parent/26/maven-parent-26.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/apache/16/apache-16.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/apache/16/apache-16.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-web/1.4.6.RELEASE/spring-boot-starter-web-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-web/1.4.6.RELEASE/spring-boot-starter-web-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starters/1.4.6.RELEASE/spring-boot-starters-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starters/1.4.6.RELEASE/spring-boot-starters-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter/1.4.6.RELEASE/spring-boot-starter-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter/1.4.6.RELEASE/spring-boot-starter-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot/1.4.6.RELEASE/spring-boot-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot/1.4.6.RELEASE/spring-boot-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-core/4.3.8.RELEASE/spring-core-4.3.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-core/4.3.8.RELEASE/spring-core-4.3.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-context/4.3.8.RELEASE/spring-context-4.3.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-context/4.3.8.RELEASE/spring-context-4.3.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-aop/4.3.8.RELEASE/spring-aop-4.3.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-aop/4.3.8.RELEASE/spring-aop-4.3.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-beans/4.3.8.RELEASE/spring-beans-4.3.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-beans/4.3.8.RELEASE/spring-beans-4.3.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-expression/4.3.8.RELEASE/spring-expression-4.3.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-expression/4.3.8.RELEASE/spring-expression-4.3.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-autoconfigure/1.4.6.RELEASE/spring-boot-autoconfigure-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-autoconfigure/1.4.6.RELEASE/spring-boot-autoconfigure-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-logging/1.4.6.RELEASE/spring-boot-starter-logging-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-logging/1.4.6.RELEASE/spring-boot-starter-logging-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/ch/qos/logback/logback-classic/1.1.11/logback-classic-1.1.11.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/ch/qos/logback/logback-classic/1.1.11/logback-classic-1.1.11.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/ch/qos/logback/logback-parent/1.1.11/logback-parent-1.1.11.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/ch/qos/logback/logback-parent/1.1.11/logback-parent-1.1.11.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/ch/qos/logback/logback-core/1.1.11/logback-core-1.1.11.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/ch/qos/logback/logback-core/1.1.11/logback-core-1.1.11.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/yaml/snakeyaml/1.17/snakeyaml-1.17.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/yaml/snakeyaml/1.17/snakeyaml-1.17.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-tomcat/1.4.6.RELEASE/spring-boot-starter-tomcat-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-tomcat/1.4.6.RELEASE/spring-boot-starter-tomcat-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-core/8.5.13/tomcat-embed-core-8.5.13.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-core/8.5.13/tomcat-embed-core-8.5.13.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-el/8.5.13/tomcat-embed-el-8.5.13.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-el/8.5.13/tomcat-embed-el-8.5.13.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.13/tomcat-embed-websocket-8.5.13.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.13/tomcat-embed-websocket-8.5.13.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/hibernate/hibernate-validator/5.2.5.Final/hibernate-validator-5.2.5.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/hibernate/hibernate-validator/5.2.5.Final/hibernate-validator-5.2.5.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/hibernate/hibernate-validator-parent/5.2.5.Final/hibernate-validator-parent-5.2.5.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/hibernate/hibernate-validator-parent/5.2.5.Final/hibernate-validator-parent-5.2.5.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jboss/arquillian/arquillian-bom/1.1.9.Final/arquillian-bom-1.1.9.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jboss/arquillian/arquillian-bom/1.1.9.Final/arquillian-bom-1.1.9.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.2/shrinkwrap-bom-1.2.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.2/shrinkwrap-bom-1.2.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.1.1/shrinkwrap-resolver-bom-2.1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.1.1/shrinkwrap-resolver-bom-2.1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-7/shrinkwrap-descriptors-bom-2.0.0-alpha-7.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-7/shrinkwrap-descriptors-bom-2.0.0-alpha-7.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jboss/logging/jboss-logging/3.3.1.Final/jboss-logging-3.3.1.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jboss/logging/jboss-logging/3.3.1.Final/jboss-logging-3.3.1.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jboss/jboss-parent/15/jboss-parent-15.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jboss/jboss-parent/15/jboss-parent-15.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/classmate/1.3.3/classmate-1.3.3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/classmate/1.3.3/classmate-1.3.3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/oss-parent/24/oss-parent-24.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/oss-parent/24/oss-parent-24.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.8.8/jackson-databind-2.8.8.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.8.8/jackson-databind-2.8.8.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/oss-parent/27/oss-parent-27.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/oss-parent/27/oss-parent-27.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.8.8/jackson-annotations-2.8.8.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.8.8/jackson-annotations-2.8.8.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.8.8/jackson-core-2.8.8.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.8.8/jackson-core-2.8.8.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-web/4.3.8.RELEASE/spring-web-4.3.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-web/4.3.8.RELEASE/spring-web-4.3.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-webmvc/4.3.8.RELEASE/spring-webmvc-4.3.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-webmvc/4.3.8.RELEASE/spring-webmvc-4.3.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-web-services/1.4.6.RELEASE/spring-boot-starter-web-services-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-web-services/1.4.6.RELEASE/spring-boot-starter-web-services-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-oxm/4.3.8.RELEASE/spring-oxm-4.3.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-oxm/4.3.8.RELEASE/spring-oxm-4.3.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/ws/spring-ws-core/2.3.1.RELEASE/spring-ws-core-2.3.1.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/ws/spring-ws-core/2.3.1.RELEASE/spring-ws-core-2.3.1.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/ws/spring-xml/2.3.1.RELEASE/spring-xml-2.3.1.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/ws/spring-xml/2.3.1.RELEASE/spring-xml-2.3.1.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/jaxen/jaxen/1.1.6/jaxen-1.1.6.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/jaxen/jaxen/1.1.6/jaxen-1.1.6.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-actuator/1.4.6.RELEASE/spring-boot-starter-actuator-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-actuator/1.4.6.RELEASE/spring-boot-starter-actuator-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-actuator/1.4.6.RELEASE/spring-boot-actuator-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-actuator/1.4.6.RELEASE/spring-boot-actuator-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-feign/1.2.7.RELEASE/spring-cloud-starter-feign-1.2.7.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-feign/1.2.7.RELEASE/spring-cloud-starter-feign-1.2.7.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-netflix/1.2.7.RELEASE/spring-cloud-netflix-1.2.7.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-netflix/1.2.7.RELEASE/spring-cloud-netflix-1.2.7.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-build/1.2.3.RELEASE/spring-cloud-build-1.2.3.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-build/1.2.3.RELEASE/spring-cloud-build-1.2.3.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter/1.1.9.RELEASE/spring-cloud-starter-1.1.9.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter/1.1.9.RELEASE/spring-cloud-starter-1.1.9.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-commons-parent/1.1.9.RELEASE/spring-cloud-commons-parent-1.1.9.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-commons-parent/1.1.9.RELEASE/spring-cloud-commons-parent-1.1.9.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-build/1.1.3.RELEASE/spring-cloud-build-1.1.3.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-build/1.1.3.RELEASE/spring-cloud-build-1.1.3.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-dependencies/1.3.8.RELEASE/spring-boot-dependencies-1.3.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-dependencies/1.3.8.RELEASE/spring-boot-dependencies-1.3.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-framework-bom/4.2.8.RELEASE/spring-framework-bom-4.2.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-framework-bom/4.2.8.RELEASE/spring-framework-bom-4.2.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/data/spring-data-releasetrain/Gosling-SR5/spring-data-releasetrain-Gosling-SR5.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/data/spring-data-releasetrain/Gosling-SR5/spring-data-releasetrain-Gosling-SR5.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/data/build/spring-data-build/1.7.5.RELEASE/spring-data-build-1.7.5.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/data/build/spring-data-build/1.7.5.RELEASE/spring-data-build-1.7.5.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/integration/spring-integration-bom/4.2.9.RELEASE/spring-integration-bom-4.2.9.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/integration/spring-integration-bom/4.2.9.RELEASE/spring-integration-bom-4.2.9.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-bom/4.0.4.RELEASE/spring-security-bom-4.0.4.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-bom/4.0.4.RELEASE/spring-security-bom-4.0.4.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-context/1.1.9.RELEASE/spring-cloud-context-1.1.9.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-context/1.1.9.RELEASE/spring-cloud-context-1.1.9.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-crypto/4.1.4.RELEASE/spring-security-crypto-4.1.4.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-crypto/4.1.4.RELEASE/spring-security-crypto-4.1.4.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-framework-bom/4.3.5.RELEASE/spring-framework-bom-4.3.5.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-framework-bom/4.3.5.RELEASE/spring-framework-bom-4.3.5.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-commons/1.1.9.RELEASE/spring-cloud-commons-1.1.9.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-commons/1.1.9.RELEASE/spring-cloud-commons-1.1.9.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-rsa/1.0.3.RELEASE/spring-security-rsa-1.0.3.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-rsa/1.0.3.RELEASE/spring-security-rsa-1.0.3.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/bouncycastle/bcpkix-jdk15on/1.55/bcpkix-jdk15on-1.55.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/bouncycastle/bcpkix-jdk15on/1.55/bcpkix-jdk15on-1.55.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/bouncycastle/bcprov-jdk15on/1.55/bcprov-jdk15on-1.55.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/bouncycastle/bcprov-jdk15on/1.55/bcprov-jdk15on-1.55.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-netflix-core/1.2.7.RELEASE/spring-cloud-netflix-core-1.2.7.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-netflix-core/1.2.7.RELEASE/spring-cloud-netflix-core-1.2.7.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-core/9.3.1/feign-core-9.3.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-core/9.3.1/feign-core-9.3.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/parent/9.3.1/parent-9.3.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/parent/9.3.1/parent-9.3.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jvnet/animal-sniffer-annotation/1.0/animal-sniffer-annotation-1.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jvnet/animal-sniffer-annotation/1.0/animal-sniffer-annotation-1.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-slf4j/9.3.1/feign-slf4j-9.3.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-slf4j/9.3.1/feign-slf4j-9.3.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-hystrix/9.3.1/feign-hystrix-9.3.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-hystrix/9.3.1/feign-hystrix-9.3.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-core/1.5.6/hystrix-core-1.5.6.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-core/1.5.6/hystrix-core-1.5.6.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/archaius/archaius-core/0.7.4/archaius-core-0.7.4.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/archaius/archaius-core/0.7.4/archaius-core-0.7.4.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/google/code/findbugs/jsr305/3.0.1/jsr305-3.0.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/google/code/findbugs/jsr305/3.0.1/jsr305-3.0.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-configuration/commons-configuration/1.8/commons-configuration-1.8.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-configuration/commons-configuration/1.8/commons-configuration-1.8.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/23/commons-parent-23.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/23/commons-parent-23.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/google/guava/guava/18.0/guava-18.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/google/guava/guava/18.0/guava-18.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxjava/1.1.10/rxjava-1.1.10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxjava/1.1.10/rxjava-1.1.10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-ribbon/1.2.7.RELEASE/spring-cloud-starter-ribbon-1.2.7.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-ribbon/1.2.7.RELEASE/spring-cloud-starter-ribbon-1.2.7.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-archaius/1.2.7.RELEASE/spring-cloud-starter-archaius-1.2.7.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-archaius/1.2.7.RELEASE/spring-cloud-starter-archaius-1.2.7.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon/2.2.0/ribbon-2.2.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon/2.2.0/ribbon-2.2.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-core/2.2.0/ribbon-core-2.2.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-core/2.2.0/ribbon-core-2.2.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-transport/2.2.0/ribbon-transport-2.2.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-transport/2.2.0/ribbon-transport-2.2.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-loadbalancer/2.2.0/ribbon-loadbalancer-2.2.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-loadbalancer/2.2.0/ribbon-loadbalancer-2.2.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/netflix-commons/netflix-statistics/0.1.1/netflix-statistics-0.1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/netflix-commons/netflix-statistics/0.1.1/netflix-statistics-0.1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/servo/servo-core/0.10.1/servo-core-0.10.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/servo/servo-core/0.10.1/servo-core-0.10.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/servo/servo-internal/0.10.1/servo-internal-0.10.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/servo/servo-internal/0.10.1/servo-internal-0.10.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/netflix-commons/netflix-commons-util/0.1.1/netflix-commons-util-0.1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/netflix-commons/netflix-commons-util/0.1.1/netflix-commons-util-0.1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty/0.4.9/rxnetty-0.4.9.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty/0.4.9/rxnetty-0.4.9.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-codec-http/4.0.27.Final/netty-codec-http-4.0.27.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-codec-http/4.0.27.Final/netty-codec-http-4.0.27.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-parent/4.0.27.Final/netty-parent-4.0.27.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-parent/4.0.27.Final/netty-parent-4.0.27.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/sonatype/oss/oss-parent/9/oss-parent-9.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-codec/4.0.27.Final/netty-codec-4.0.27.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-codec/4.0.27.Final/netty-codec-4.0.27.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-transport/4.0.27.Final/netty-transport-4.0.27.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-transport/4.0.27.Final/netty-transport-4.0.27.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-buffer/4.0.27.Final/netty-buffer-4.0.27.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-buffer/4.0.27.Final/netty-buffer-4.0.27.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-common/4.0.27.Final/netty-common-4.0.27.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-common/4.0.27.Final/netty-common-4.0.27.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-handler/4.0.27.Final/netty-handler-4.0.27.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-handler/4.0.27.Final/netty-handler-4.0.27.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty-contexts/0.4.9/rxnetty-contexts-0.4.9.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty-contexts/0.4.9/rxnetty-contexts-0.4.9.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty-servo/0.4.9/rxnetty-servo-0.4.9.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty-servo/0.4.9/rxnetty-servo-0.4.9.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/5/commons-parent-5.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/5/commons-parent-5.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-httpclient/2.2.0/ribbon-httpclient-2.2.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-httpclient/2.2.0/ribbon-httpclient-2.2.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/39/commons-parent-39.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/39/commons-parent-39.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpcomponents-client/4.5.3/httpcomponents-client-4.5.3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpcomponents-client/4.5.3/httpcomponents-client-4.5.3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpcore/4.4.6/httpcore-4.4.6.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpcore/4.4.6/httpcore-4.4.6.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpcomponents-core/4.4.6/httpcomponents-core-4.4.6.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpcomponents-core/4.4.6/httpcomponents-core-4.4.6.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-codec/commons-codec/1.10/commons-codec-1.10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-codec/commons-codec/1.10/commons-codec-1.10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/35/commons-parent-35.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/35/commons-parent-35.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/jersey-client/1.19.1/jersey-client-1.19.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/jersey-client/1.19.1/jersey-client-1.19.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/jersey-project/1.19.1/jersey-project-1.19.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/jersey-project/1.19.1/jersey-project-1.19.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/jersey-core/1.19.1/jersey-core-1.19.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/jersey-core/1.19.1/jersey-core-1.19.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/contribs/jersey-apache-client4/1.19.1/jersey-apache-client4-1.19.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/contribs/jersey-apache-client4/1.19.1/jersey-apache-client4-1.19.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/contribs/jersey-contribs/1.19.1/jersey-contribs-1.19.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/contribs/jersey-contribs/1.19.1/jersey-contribs-1.19.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-hystrix/1.2.7.RELEASE/spring-cloud-starter-hystrix-1.2.7.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-hystrix/1.2.7.RELEASE/spring-cloud-starter-hystrix-1.2.7.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-metrics-event-stream/1.5.6/hystrix-metrics-event-stream-1.5.6.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-metrics-event-stream/1.5.6/hystrix-metrics-event-stream-1.5.6.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-serialization/1.5.6/hystrix-serialization-1.5.6.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-serialization/1.5.6/hystrix-serialization-1.5.6.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/module/jackson-module-afterburner/2.7.5/jackson-module-afterburner-2.7.5.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/module/jackson-module-afterburner/2.7.5/jackson-module-afterburner-2.7.5.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/module/jackson-modules-base/2.7.5/jackson-modules-base-2.7.5.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/module/jackson-modules-base/2.7.5/jackson-modules-base-2.7.5.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/jackson-parent/2.7/jackson-parent-2.7.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/jackson-parent/2.7/jackson-parent-2.7.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/oss-parent/25/oss-parent-25.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/oss-parent/25/oss-parent-25.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.8.8/jackson-dataformat-cbor-2.8.8.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.8.8/jackson-dataformat-cbor-2.8.8.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformats-binary/2.8.8/jackson-dataformats-binary-2.8.8.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformats-binary/2.8.8/jackson-dataformats-binary-2.8.8.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-javanica/1.5.6/hystrix-javanica-1.5.6.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-javanica/1.5.6/hystrix-javanica-1.5.6.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/ow2/ow2/1.3/ow2-1.3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/ow2/ow2/1.3/ow2-1.3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/aspectj/aspectjweaver/1.8.10/aspectjweaver-1.8.10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/aspectj/aspectjweaver/1.8.10/aspectjweaver-1.8.10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-sleuth/1.1.4.RELEASE/spring-cloud-starter-sleuth-1.1.4.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-sleuth/1.1.4.RELEASE/spring-cloud-starter-sleuth-1.1.4.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-sleuth/1.1.4.RELEASE/spring-cloud-sleuth-1.1.4.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-sleuth/1.1.4.RELEASE/spring-cloud-sleuth-1.1.4.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-aop/1.4.6.RELEASE/spring-boot-starter-aop-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-aop/1.4.6.RELEASE/spring-boot-starter-aop-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-sleuth-core/1.1.4.RELEASE/spring-cloud-sleuth-core-1.1.4.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-sleuth-core/1.1.4.RELEASE/spring-cloud-sleuth-core-1.1.4.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/aspectj/aspectjrt/1.8.10/aspectjrt-1.8.10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/aspectj/aspectjrt/1.8.10/aspectjrt-1.8.10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/axis2/axis2-kernel/1.7.5/axis2-kernel-1.7.5.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/axis2/axis2-kernel/1.7.5/axis2-kernel-1.7.5.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/axis2/axis2/1.7.5/axis2-1.7.5.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/axis2/axis2/1.7.5/axis2-1.7.5.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/apache/18/apache-18.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/apache/18/apache-18.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-api/1.2.20/axiom-api-1.2.20.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-api/1.2.20/axiom-api-1.2.20.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom/1.2.20/axiom-1.2.20.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom/1.2.20/axiom-1.2.20.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/ws-parent/2/ws-parent-2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/ws-parent/2/ws-parent-2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/apache/17/apache-17.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/apache/17/apache-17.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.1/geronimo-activation_1.1_spec-1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.1/geronimo-activation_1.1_spec-1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/specs/1.3/specs-1.3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/specs/1.3/specs-1.3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/config/config/1.1/config-1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/config/config/1.1/config-1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/genesis/1.1/genesis-1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/genesis/1.1/genesis-1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/james/apache-mime4j-core/0.7.2/apache-mime4j-core-0.7.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/james/apache-mime4j-core/0.7.2/apache-mime4j-core-0.7.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/james/apache-mime4j-project/0.7.2/apache-mime4j-project-0.7.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/james/apache-mime4j-project/0.7.2/apache-mime4j-project-0.7.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/james/james-project/1.8/james-project-1.8.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/james/james-project/1.8/james-project-1.8.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-impl/1.2.20/axiom-impl-1.2.20.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-impl/1.2.20/axiom-impl-1.2.20.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/implementations/1.2.20/implementations-1.2.20.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/implementations/1.2.20/implementations-1.2.20.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/woodstox/woodstox-core-asl/4.2.0/woodstox-core-asl-4.2.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/woodstox/woodstox-core-asl/4.2.0/woodstox-core-asl-4.2.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/woodstox/stax2-api/3.1.1/stax2-api-3.1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/woodstox/stax2-api/3.1.1/stax2-api-3.1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-ws-metadata_2.0_spec/1.1.2/geronimo-ws-metadata_2.0_spec-1.1.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-ws-metadata_2.0_spec/1.1.2/geronimo-ws-metadata_2.0_spec-1.1.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/specs/1.4/specs-1.4.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/specs/1.4/specs-1.4.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/config/project-config/1.2/project-config-1.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/config/project-config/1.2/project-config-1.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/config/config/1.2/config-1.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/config/config/1.2/config-1.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/genesis/1.2/genesis-1.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/genesis/genesis/1.2/genesis-1.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1/geronimo-jta_1.1_spec-1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1/geronimo-jta_1.1_spec-1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/specs/1.2/specs-1.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/specs/1.2/specs-1.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/32/commons-parent-32.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/32/commons-parent-32.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-io/commons-io/2.2/commons-io-2.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-io/commons-io/2.2/commons-io-2.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/24/commons-parent-24.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/commons/commons-parent/24/commons-parent-24.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/xmlschema/xmlschema-core/2.2.1/xmlschema-core-2.2.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/xmlschema/xmlschema-core/2.2.1/xmlschema-core-2.2.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/xmlschema/xmlschema/2.2.1/xmlschema-2.2.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/xmlschema/xmlschema/2.2.1/xmlschema-2.2.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/neethi/neethi/3.0.3/neethi-3.0.3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/neethi/neethi/3.0.3/neethi-3.0.3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/woden/woden-core/1.0M10/woden-core-1.0M10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/woden/woden-core/1.0M10/woden-core-1.0M10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/woden/woden/1.0M10/woden-1.0M10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/woden/woden/1.0M10/woden-1.0M10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/ws-parent/1/ws-parent-1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/ws-parent/1/ws-parent-1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-io/commons-io/2.1/commons-io-2.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-io/commons-io/2.1/commons-io-2.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/axis2/axis2-adb/1.7.5/axis2-adb-1.7.5.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/axis2/axis2-adb/1.7.5/axis2-adb-1.7.5.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-dom/1.2.20/axiom-dom-1.2.20.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-dom/1.2.20/axiom-dom-1.2.20.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-tools/2.2.10/jaxws-tools-2.2.10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-tools/2.2.10/jaxws-tools-2.2.10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/bundles/2.2.10/bundles-2.2.10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/bundles/2.2.10/bundles-2.2.10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/project/2.2.10/project-2.2.10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/project/2.2.10/project-2.2.10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-ri-bom-ext/2.2.10/jaxws-ri-bom-ext-2.2.10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-ri-bom-ext/2.2.10/jaxws-ri-bom-ext-2.2.10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-ri-bom/2.2.10/jaxws-ri-bom-2.2.10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-ri-bom/2.2.10/jaxws-ri-bom-2.2.10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/glassfish/jaxb/jaxb-bom/2.2.10-b140802.1033/jaxb-bom-2.2.10-b140802.1033.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/glassfish/jaxb/jaxb-bom/2.2.10-b140802.1033/jaxb-bom-2.2.10-b140802.1033.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-rt/2.2.10/jaxws-rt-2.2.10.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-rt/2.2.10/jaxws-rt-2.2.10.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/xml/bind/jaxb-api/2.2.12-b140109.1041/jaxb-api-2.2.12-b140109.1041.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/xml/bind/jaxb-api/2.2.12-b140109.1041/jaxb-api-2.2.12-b140109.1041.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/xml/ws/jaxws-api/2.2.11/jaxws-api-2.2.11.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/xml/ws/jaxws-api/2.2.11/jaxws-api-2.2.11.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/xml/bind/jaxb-api/2.2.9/jaxb-api-2.2.9.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/xml/bind/jaxb-api/2.2.9/jaxb-api-2.2.9.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/xml/soap/javax.xml.soap-api/1.3.5/javax.xml.soap-api-1.3.5.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/xml/soap/javax.xml.soap-api/1.3.5/javax.xml.soap-api-1.3.5.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/net/java/jvnet-parent/3/jvnet-parent-3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/net/java/jvnet-parent/3/jvnet-parent-3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/annotation/javax.annotation-api/1.2-b03/javax.annotation-api-1.2-b03.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/annotation/javax.annotation-api/1.2-b03/javax.annotation-api-1.2-b03.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/jws/jsr181-api/1.0-MR1/jsr181-api-1.0-MR1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/jws/jsr181-api/1.0-MR1/jsr181-api-1.0-MR1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/xml/soap/javax.xml.soap-api/1.3.7/javax.xml.soap-api-1.3.7.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/xml/soap/javax.xml.soap-api/1.3.7/javax.xml.soap-api-1.3.7.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-core/2.2.10-b140802.1033/jaxb-core-2.2.10-b140802.1033.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-core/2.2.10-b140802.1033/jaxb-core-2.2.10-b140802.1033.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/mvn/jaxb-bundles/2.2.10-b140802.1033/jaxb-bundles-2.2.10-b140802.1033.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/mvn/jaxb-bundles/2.2.10-b140802.1033/jaxb-bundles-2.2.10-b140802.1033.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/mvn/jaxb-parent/2.2.10-b140802.1033/jaxb-parent-2.2.10-b140802.1033.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/mvn/jaxb-parent/2.2.10-b140802.1033/jaxb-parent-2.2.10-b140802.1033.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-bom-ext/2.2.10-b140802.1033/jaxb-bom-ext-2.2.10-b140802.1033.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-bom-ext/2.2.10-b140802.1033/jaxb-bom-ext-2.2.10-b140802.1033.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-impl/2.2.10-b140802.1033/jaxb-impl-2.2.10-b140802.1033.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-impl/2.2.10-b140802.1033/jaxb-impl-2.2.10-b140802.1033.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/policy/2.4/policy-2.4.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/policy/2.4/policy-2.4.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/glassfish/gmbal/gmbal-api-only/3.1.0-b001/gmbal-api-only-3.1.0-b001.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/glassfish/gmbal/gmbal-api-only/3.1.0-b001/gmbal-api-only-3.1.0-b001.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/glassfish/external/management-api/3.0.0-b012/management-api-3.0.0-b012.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/glassfish/external/management-api/3.0.0-b012/management-api-3.0.0-b012.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jvnet/staxex/stax-ex/1.7.7/stax-ex-1.7.7.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jvnet/staxex/stax-ex/1.7.7/stax-ex-1.7.7.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/stream/buffer/streambuffer/1.5.3/streambuffer-1.5.3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/stream/buffer/streambuffer/1.5.3/streambuffer-1.5.3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jvnet/staxex/stax-ex/1.7.1/stax-ex-1.7.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jvnet/staxex/stax-ex/1.7.1/stax-ex-1.7.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jvnet/mimepull/mimepull/1.9.4/mimepull-1.9.4.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jvnet/mimepull/mimepull/1.9.4/mimepull-1.9.4.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/fastinfoset/FastInfoset/1.2.13/FastInfoset-1.2.13.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/fastinfoset/FastInfoset/1.2.13/FastInfoset-1.2.13.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/fastinfoset/fastinfoset-project/1.2.13/fastinfoset-project-1.2.13.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/fastinfoset/fastinfoset-project/1.2.13/fastinfoset-project-1.2.13.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/glassfish/ha/ha-api/3.1.9/ha-api-3.1.9.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/glassfish/ha/ha-api/3.1.9/ha-api-3.1.9.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/messaging/saaj/saaj-impl/1.3.25/saaj-impl-1.3.25.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/messaging/saaj/saaj-impl/1.3.25/saaj-impl-1.3.25.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jvnet/mimepull/mimepull/1.9/mimepull-1.9.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jvnet/mimepull/mimepull/1.9/mimepull-1.9.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/activation/activation/1.1/activation-1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/activation/activation/1.1/activation-1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/org/apache/xml/internal/resolver/20050927/resolver-20050927.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/org/apache/xml/internal/resolver/20050927/resolver-20050927.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-xjc/2.2.10-b140802.1033/jaxb-xjc-2.2.10-b140802.1033.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-xjc/2.2.10-b140802.1033/jaxb-xjc-2.2.10-b140802.1033.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-jxc/2.2.10-b140802.1033/jaxb-jxc-2.2.10-b140802.1033.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-jxc/2.2.10-b140802.1033/jaxb-jxc-2.2.10-b140802.1033.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-swagger2/2.7.0/springfox-swagger2-2.7.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-swagger2/2.7.0/springfox-swagger2-2.7.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/swagger/swagger-annotations/1.5.13/swagger-annotations-1.5.13.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/swagger/swagger-annotations/1.5.13/swagger-annotations-1.5.13.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/swagger/swagger-project/1.5.13/swagger-project-1.5.13.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/swagger/swagger-project/1.5.13/swagger-project-1.5.13.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/sonatype/oss/oss-parent/5/oss-parent-5.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/sonatype/oss/oss-parent/5/oss-parent-5.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/swagger/swagger-models/1.5.13/swagger-models-1.5.13.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/swagger/swagger-models/1.5.13/swagger-models-1.5.13.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-spi/2.7.0/springfox-spi-2.7.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-spi/2.7.0/springfox-spi-2.7.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-core/2.7.0/springfox-core-2.7.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-core/2.7.0/springfox-core-2.7.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/net/bytebuddy/byte-buddy/1.6.14/byte-buddy-1.6.14.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/net/bytebuddy/byte-buddy/1.6.14/byte-buddy-1.6.14.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/net/bytebuddy/byte-buddy-parent/1.6.14/byte-buddy-parent-1.6.14.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/net/bytebuddy/byte-buddy-parent/1.6.14/byte-buddy-parent-1.6.14.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/plugin/spring-plugin/1.2.0.RELEASE/spring-plugin-1.2.0.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/plugin/spring-plugin/1.2.0.RELEASE/spring-plugin-1.2.0.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-schema/2.7.0/springfox-schema-2.7.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-schema/2.7.0/springfox-schema-2.7.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-swagger-common/2.7.0/springfox-swagger-common-2.7.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-swagger-common/2.7.0/springfox-swagger-common-2.7.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-spring-web/2.7.0/springfox-spring-web-2.7.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-spring-web/2.7.0/springfox-spring-web-2.7.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/reflections/reflections/0.9.11/reflections-0.9.11.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/reflections/reflections/0.9.11/reflections-0.9.11.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/javassist/javassist/3.20.0-GA/javassist-3.20.0-GA.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/javassist/javassist/3.20.0-GA/javassist-3.20.0-GA.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/mapstruct/mapstruct/1.1.0.Final/mapstruct-1.1.0.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/mapstruct/mapstruct/1.1.0.Final/mapstruct-1.1.0.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/mapstruct/mapstruct-parent/1.1.0.Final/mapstruct-parent-1.1.0.Final.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/mapstruct/mapstruct-parent/1.1.0.Final/mapstruct-parent-1.1.0.Final.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-swagger-ui/2.7.0/springfox-swagger-ui-2.7.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-swagger-ui/2.7.0/springfox-swagger-ui-2.7.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/projectlombok/lombok/1.16.18/lombok-1.16.18.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/projectlombok/lombok/1.16.18/lombok-1.16.18.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-test/1.4.6.RELEASE/spring-boot-starter-test-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-test/1.4.6.RELEASE/spring-boot-starter-test-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-test/1.4.6.RELEASE/spring-boot-test-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-test/1.4.6.RELEASE/spring-boot-test-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-test-autoconfigure/1.4.6.RELEASE/spring-boot-test-autoconfigure-1.4.6.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-test-autoconfigure/1.4.6.RELEASE/spring-boot-test-autoconfigure-1.4.6.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/jayway/jsonpath/json-path/2.2.0/json-path-2.2.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/com/jayway/jsonpath/json-path/2.2.0/json-path-2.2.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/net/minidev/json-smart/2.2.1/json-smart-2.2.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/net/minidev/json-smart/2.2.1/json-smart-2.2.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/net/minidev/accessors-smart/1.1/accessors-smart-1.1.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/net/minidev/accessors-smart/1.1/accessors-smart-1.1.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/net/minidev/minidev-parent/2.2/minidev-parent-2.2.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/net/minidev/minidev-parent/2.2/minidev-parent-2.2.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/ow2/asm/asm/5.0.3/asm-5.0.3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/ow2/asm/asm-parent/5.0.3/asm-parent-5.0.3.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/assertj/assertj-core/2.5.0/assertj-core-2.5.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/assertj/assertj-core/2.5.0/assertj-core-2.5.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/assertj/assertj-parent-pom/2.1.4/assertj-parent-pom-2.1.4.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/assertj/assertj-parent-pom/2.1.4/assertj-parent-pom-2.1.4.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/skyscreamer/jsonassert/1.3.0/jsonassert-1.3.0.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/skyscreamer/jsonassert/1.3.0/jsonassert-1.3.0.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/json/json/20140107/json-20140107.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/json/json/20140107/json-20140107.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-test/4.3.8.RELEASE/spring-test-4.3.8.RELEASE.pom
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-test/4.3.8.RELEASE/spring-test-4.3.8.RELEASE.pom (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-web/1.4.6.RELEASE/spring-boot-starter-web-1.4.6.RELEASE.jar
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter/1.4.6.RELEASE/spring-boot-starter-1.4.6.RELEASE.jar
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-autoconfigure/1.4.6.RELEASE/spring-boot-autoconfigure-1.4.6.RELEASE.jar
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot/1.4.6.RELEASE/spring-boot-1.4.6.RELEASE.jar
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-logging/1.4.6.RELEASE/spring-boot-starter-logging-1.4.6.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-web/1.4.6.RELEASE/spring-boot-starter-web-1.4.6.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/slf4j/log4j-over-slf4j/1.7.25/log4j-over-slf4j-1.7.25.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-tomcat/1.4.6.RELEASE/spring-boot-starter-tomcat-1.4.6.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-tomcat/1.4.6.RELEASE/spring-boot-starter-tomcat-1.4.6.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-core/8.5.13/tomcat-embed-core-8.5.13.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter/1.4.6.RELEASE/spring-boot-starter-1.4.6.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-el/8.5.13/tomcat-embed-el-8.5.13.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-logging/1.4.6.RELEASE/spring-boot-starter-logging-1.4.6.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.13/tomcat-embed-websocket-8.5.13.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot/1.4.6.RELEASE/spring-boot-1.4.6.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/hibernate/hibernate-validator/5.2.5.Final/hibernate-validator-5.2.5.Final.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.13/tomcat-embed-websocket-8.5.13.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jboss/logging/jboss-logging/3.3.1.Final/jboss-logging-3.3.1.Final.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-el/8.5.13/tomcat-embed-el-8.5.13.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.8.8/jackson-databind-2.8.8.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jboss/logging/jboss-logging/3.3.1.Final/jboss-logging-3.3.1.Final.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.8.8/jackson-annotations-2.8.8.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-autoconfigure/1.4.6.RELEASE/spring-boot-autoconfigure-1.4.6.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.8.8/jackson-core-2.8.8.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.8.8/jackson-databind-2.8.8.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-web/4.3.8.RELEASE/spring-web-4.3.8.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.8.8/jackson-core-2.8.8.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-context/4.3.8.RELEASE/spring-context-4.3.8.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/hibernate/hibernate-validator/5.2.5.Final/hibernate-validator-5.2.5.Final.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-webmvc/4.3.8.RELEASE/spring-webmvc-4.3.8.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.8.8/jackson-annotations-2.8.8.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-expression/4.3.8.RELEASE/spring-expression-4.3.8.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-web/4.3.8.RELEASE/spring-web-4.3.8.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-web-services/1.4.6.RELEASE/spring-boot-starter-web-services-1.4.6.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-webmvc/4.3.8.RELEASE/spring-webmvc-4.3.8.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-oxm/4.3.8.RELEASE/spring-oxm-4.3.8.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-web-services/1.4.6.RELEASE/spring-boot-starter-web-services-1.4.6.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/jaxen/jaxen/1.1.6/jaxen-1.1.6.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-oxm/4.3.8.RELEASE/spring-oxm-4.3.8.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-expression/4.3.8.RELEASE/spring-expression-4.3.8.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/jaxen/jaxen/1.1.6/jaxen-1.1.6.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/ws/spring-ws-core/2.3.1.RELEASE/spring-ws-core-2.3.1.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/ws/spring-xml/2.3.1.RELEASE/spring-xml-2.3.1.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-aop/4.3.8.RELEASE/spring-aop-4.3.8.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/ws/spring-ws-core/2.3.1.RELEASE/spring-ws-core-2.3.1.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-beans/4.3.8.RELEASE/spring-beans-4.3.8.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/ws/spring-xml/2.3.1.RELEASE/spring-xml-2.3.1.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-core/4.3.8.RELEASE/spring-core-4.3.8.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-core/4.3.8.RELEASE/spring-core-4.3.8.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-actuator/1.4.6.RELEASE/spring-boot-starter-actuator-1.4.6.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-aop/4.3.8.RELEASE/spring-aop-4.3.8.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-actuator/1.4.6.RELEASE/spring-boot-actuator-1.4.6.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-actuator/1.4.6.RELEASE/spring-boot-starter-actuator-1.4.6.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-feign/1.2.7.RELEASE/spring-cloud-starter-feign-1.2.7.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-context/4.3.8.RELEASE/spring-context-4.3.8.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter/1.1.9.RELEASE/spring-cloud-starter-1.1.9.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-feign/1.2.7.RELEASE/spring-cloud-starter-feign-1.2.7.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-context/1.1.9.RELEASE/spring-cloud-context-1.1.9.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-actuator/1.4.6.RELEASE/spring-boot-actuator-1.4.6.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-rsa/1.0.3.RELEASE/spring-security-rsa-1.0.3.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter/1.1.9.RELEASE/spring-cloud-starter-1.1.9.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/bouncycastle/bcpkix-jdk15on/1.55/bcpkix-jdk15on-1.55.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/spring-beans/4.3.8.RELEASE/spring-beans-4.3.8.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/bouncycastle/bcprov-jdk15on/1.55/bcprov-jdk15on-1.55.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-rsa/1.0.3.RELEASE/spring-security-rsa-1.0.3.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-netflix-core/1.2.7.RELEASE/spring-cloud-netflix-core-1.2.7.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-context/1.1.9.RELEASE/spring-cloud-context-1.1.9.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-commons/1.1.9.RELEASE/spring-cloud-commons-1.1.9.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/tomcat/embed/tomcat-embed-core/8.5.13/tomcat-embed-core-8.5.13.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-crypto/4.1.4.RELEASE/spring-security-crypto-4.1.4.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-commons/1.1.9.RELEASE/spring-cloud-commons-1.1.9.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-core/9.3.1/feign-core-9.3.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/security/spring-security-crypto/4.1.4.RELEASE/spring-security-crypto-4.1.4.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jvnet/animal-sniffer-annotation/1.0/animal-sniffer-annotation-1.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-core/9.3.1/feign-core-9.3.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-slf4j/9.3.1/feign-slf4j-9.3.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-netflix-core/1.2.7.RELEASE/spring-cloud-netflix-core-1.2.7.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-hystrix/9.3.1/feign-hystrix-9.3.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jvnet/animal-sniffer-annotation/1.0/animal-sniffer-annotation-1.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-ribbon/1.2.7.RELEASE/spring-cloud-starter-ribbon-1.2.7.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-slf4j/9.3.1/feign-slf4j-9.3.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon/2.2.0/ribbon-2.2.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/bouncycastle/bcpkix-jdk15on/1.55/bcpkix-jdk15on-1.55.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-transport/2.2.0/ribbon-transport-2.2.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/github/openfeign/feign-hystrix/9.3.1/feign-hystrix-9.3.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty-contexts/0.4.9/rxnetty-contexts-0.4.9.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-ribbon/1.2.7.RELEASE/spring-cloud-starter-ribbon-1.2.7.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty-servo/0.4.9/rxnetty-servo-0.4.9.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon/2.2.0/ribbon-2.2.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty/0.4.9/rxnetty-0.4.9.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-transport/2.2.0/ribbon-transport-2.2.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-codec-http/4.0.27.Final/netty-codec-http-4.0.27.Final.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty-contexts/0.4.9/rxnetty-contexts-0.4.9.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-codec/4.0.27.Final/netty-codec-4.0.27.Final.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty-servo/0.4.9/rxnetty-servo-0.4.9.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-handler/4.0.27.Final/netty-handler-4.0.27.Final.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxnetty/0.4.9/rxnetty-0.4.9.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-codec/4.0.27.Final/netty-codec-4.0.27.Final.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-common/4.0.27.Final/netty-common-4.0.27.Final.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-buffer/4.0.27.Final/netty-buffer-4.0.27.Final.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/bouncycastle/bcprov-jdk15on/1.55/bcprov-jdk15on-1.55.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/netty/netty-transport/4.0.27.Final/netty-transport-4.0.27.Final.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-handler/4.0.27.Final/netty-handler-4.0.27.Final.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-core/2.2.0/ribbon-core-2.2.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-codec-http/4.0.27.Final/netty-codec-http-4.0.27.Final.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-httpclient/2.2.0/ribbon-httpclient-2.2.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-buffer/4.0.27.Final/netty-buffer-4.0.27.Final.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-core/2.2.0/ribbon-core-2.2.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpcore/4.4.6/httpcore-4.4.6.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpcore/4.4.6/httpcore-4.4.6.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-codec/commons-codec/1.10/commons-codec-1.10.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-common/4.0.27.Final/netty-common-4.0.27.Final.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/jersey-client/1.19.1/jersey-client-1.19.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/jersey-core/1.19.1/jersey-core-1.19.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-codec/commons-codec/1.10/commons-codec-1.10.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/contribs/jersey-apache-client4/1.19.1/jersey-apache-client4-1.19.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-httpclient/2.2.0/ribbon-httpclient-2.2.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/servo/servo-core/0.10.1/servo-core-0.10.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/contribs/jersey-apache-client4/1.19.1/jersey-apache-client4-1.19.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/servo/servo-internal/0.10.1/servo-internal-0.10.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/netty/netty-transport/4.0.27.Final/netty-transport-4.0.27.Final.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/netflix-commons/netflix-commons-util/0.1.1/netflix-commons-util-0.1.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/jersey-client/1.19.1/jersey-client-1.19.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-loadbalancer/2.2.0/ribbon-loadbalancer-2.2.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/servo/servo-internal/0.10.1/servo-internal-0.10.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/netflix-commons/netflix-statistics/0.1.1/netflix-statistics-0.1.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/netflix-commons/netflix-commons-util/0.1.1/netflix-commons-util-0.1.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxjava/1.1.10/rxjava-1.1.10.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/ribbon/ribbon-loadbalancer/2.2.0/ribbon-loadbalancer-2.2.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-archaius/1.2.7.RELEASE/spring-cloud-starter-archaius-1.2.7.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/servo/servo-core/0.10.1/servo-core-0.10.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/archaius/archaius-core/0.7.4/archaius-core-0.7.4.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/netflix-commons/netflix-statistics/0.1.1/netflix-statistics-0.1.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/google/code/findbugs/jsr305/3.0.1/jsr305-3.0.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/google/code/findbugs/jsr305/3.0.1/jsr305-3.0.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-configuration/commons-configuration/1.8/commons-configuration-1.8.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/jersey/jersey-core/1.19.1/jersey-core-1.19.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-hystrix/1.2.7.RELEASE/spring-cloud-starter-hystrix-1.2.7.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-archaius/1.2.7.RELEASE/spring-cloud-starter-archaius-1.2.7.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-core/1.5.6/hystrix-core-1.5.6.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/archaius/archaius-core/0.7.4/archaius-core-0.7.4.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-hystrix/1.2.7.RELEASE/spring-cloud-starter-hystrix-1.2.7.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-metrics-event-stream/1.5.6/hystrix-metrics-event-stream-1.5.6.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-configuration/commons-configuration/1.8/commons-configuration-1.8.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-serialization/1.5.6/hystrix-serialization-1.5.6.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/module/jackson-module-afterburner/2.7.5/jackson-module-afterburner-2.7.5.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-metrics-event-stream/1.5.6/hystrix-metrics-event-stream-1.5.6.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.8.8/jackson-dataformat-cbor-2.8.8.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-serialization/1.5.6/hystrix-serialization-1.5.6.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-javanica/1.5.6/hystrix-javanica-1.5.6.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/module/jackson-module-afterburner/2.7.5/jackson-module-afterburner-2.7.5.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.8.8/jackson-dataformat-cbor-2.8.8.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/reactivex/rxjava/1.1.10/rxjava-1.1.10.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/aspectj/aspectjweaver/1.8.10/aspectjweaver-1.8.10.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-javanica/1.5.6/hystrix-javanica-1.5.6.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-sleuth/1.1.4.RELEASE/spring-cloud-starter-sleuth-1.1.4.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/netflix/hystrix/hystrix-core/1.5.6/hystrix-core-1.5.6.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-aop/1.4.6.RELEASE/spring-boot-starter-aop-1.4.6.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-sleuth-core/1.1.4.RELEASE/spring-cloud-sleuth-core-1.1.4.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-starter-sleuth/1.1.4.RELEASE/spring-cloud-starter-sleuth-1.1.4.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/aspectj/aspectjrt/1.8.10/aspectjrt-1.8.10.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/axis2/axis2-kernel/1.7.5/axis2-kernel-1.7.5.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/boot/spring-boot-starter-aop/1.4.6.RELEASE/spring-boot-starter-aop-1.4.6.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-api/1.2.20/axiom-api-1.2.20.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/aspectj/aspectjrt/1.8.10/aspectjrt-1.8.10.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/cloud/spring-cloud-sleuth-core/1.1.4.RELEASE/spring-cloud-sleuth-core-1.1.4.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/james/apache-mime4j-core/0.7.2/apache-mime4j-core-0.7.2.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-impl/1.2.20/axiom-impl-1.2.20.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/axis2/axis2-kernel/1.7.5/axis2-kernel-1.7.5.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-ws-metadata_2.0_spec/1.1.2/geronimo-ws-metadata_2.0_spec-1.1.2.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/james/apache-mime4j-core/0.7.2/apache-mime4j-core-0.7.2.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1/geronimo-jta_1.1_spec-1.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-ws-metadata_2.0_spec/1.1.2/geronimo-ws-metadata_2.0_spec-1.1.2.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/aspectj/aspectjweaver/1.8.10/aspectjweaver-1.8.10.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-api/1.2.20/axiom-api-1.2.20.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/xmlschema/xmlschema-core/2.2.1/xmlschema-core-2.2.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-jta_1.1_spec/1.1/geronimo-jta_1.1_spec-1.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/neethi/neethi/3.0.3/neethi-3.0.3.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-impl/1.2.20/axiom-impl-1.2.20.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/woden/woden-core/1.0M10/woden-core-1.0M10.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-fileupload/commons-fileupload/1.3.1/commons-fileupload-1.3.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/commons-io/commons-io/2.1/commons-io-2.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/neethi/neethi/3.0.3/neethi-3.0.3.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/axis2/axis2-adb/1.7.5/axis2-adb-1.7.5.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/xmlschema/xmlschema-core/2.2.1/xmlschema-core-2.2.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-dom/1.2.20/axiom-dom-1.2.20.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-io/commons-io/2.1/commons-io-2.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-tools/2.2.10/jaxws-tools-2.2.10.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/woden/woden-core/1.0M10/woden-core-1.0M10.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-xjc/2.2.10-b140802.1033/jaxb-xjc-2.2.10-b140802.1033.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/axis2/axis2-adb/1.7.5/axis2-adb-1.7.5.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-jxc/2.2.10-b140802.1033/jaxb-jxc-2.2.10-b140802.1033.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/xml/ws/jaxws-api/2.2.11/jaxws-api-2.2.11.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/apache/ws/commons/axiom/axiom-dom/1.2.20/axiom-dom-1.2.20.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/xml/bind/jaxb-api/2.2.12-b140109.1041/jaxb-api-2.2.12-b140109.1041.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-jxc/2.2.10-b140802.1033/jaxb-jxc-2.2.10-b140802.1033.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/xml/soap/javax.xml.soap-api/1.3.7/javax.xml.soap-api-1.3.7.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/xml/ws/jaxws-api/2.2.11/jaxws-api-2.2.11.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/jws/jsr181-api/1.0-MR1/jsr181-api-1.0-MR1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/xml/soap/javax.xml.soap-api/1.3.7/javax.xml.soap-api-1.3.7.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-rt/2.2.10/jaxws-rt-2.2.10.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/xml/bind/jaxb-api/2.2.12-b140109.1041/jaxb-api-2.2.12-b140109.1041.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-core/2.2.10-b140802.1033/jaxb-core-2.2.10-b140802.1033.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/javax/jws/jsr181-api/1.0-MR1/jsr181-api-1.0-MR1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-impl/2.2.10-b140802.1033/jaxb-impl-2.2.10-b140802.1033.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-tools/2.2.10/jaxws-tools-2.2.10.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/policy/2.4/policy-2.4.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-core/2.2.10-b140802.1033/jaxb-core-2.2.10-b140802.1033.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/glassfish/gmbal/gmbal-api-only/3.1.0-b001/gmbal-api-only-3.1.0-b001.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/glassfish/gmbal/gmbal-api-only/3.1.0-b001/gmbal-api-only-3.1.0-b001.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/glassfish/external/management-api/3.0.0-b012/management-api-3.0.0-b012.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/policy/2.4/policy-2.4.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jvnet/staxex/stax-ex/1.7.7/stax-ex-1.7.7.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-xjc/2.2.10-b140802.1033/jaxb-xjc-2.2.10-b140802.1033.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/stream/buffer/streambuffer/1.5.3/streambuffer-1.5.3.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/glassfish/external/management-api/3.0.0-b012/management-api-3.0.0-b012.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/jvnet/mimepull/mimepull/1.9.4/mimepull-1.9.4.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jvnet/staxex/stax-ex/1.7.7/stax-ex-1.7.7.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/fastinfoset/FastInfoset/1.2.13/FastInfoset-1.2.13.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/stream/buffer/streambuffer/1.5.3/streambuffer-1.5.3.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/glassfish/ha/ha-api/3.1.9/ha-api-3.1.9.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/jvnet/mimepull/mimepull/1.9.4/mimepull-1.9.4.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/xml/messaging/saaj/saaj-impl/1.3.25/saaj-impl-1.3.25.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/ws/jaxws-rt/2.2.10/jaxws-rt-2.2.10.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/woodstox/woodstox-core-asl/4.2.0/woodstox-core-asl-4.2.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/glassfish/ha/ha-api/3.1.9/ha-api-3.1.9.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/codehaus/woodstox/stax2-api/3.1.1/stax2-api-3.1.1.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/woodstox/stax2-api/3.1.1/stax2-api-3.1.1.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/sun/org/apache/xml/internal/resolver/20050927/resolver-20050927.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/messaging/saaj/saaj-impl/1.3.25/saaj-impl-1.3.25.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-swagger2/2.7.0/springfox-swagger2-2.7.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/codehaus/woodstox/woodstox-core-asl/4.2.0/woodstox-core-asl-4.2.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/swagger/swagger-annotations/1.5.13/swagger-annotations-1.5.13.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/bind/jaxb-impl/2.2.10-b140802.1033/jaxb-impl-2.2.10-b140802.1033.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/swagger/swagger-models/1.5.13/swagger-models-1.5.13.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/org/apache/xml/internal/resolver/20050927/resolver-20050927.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-spi/2.7.0/springfox-spi-2.7.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/com/sun/xml/fastinfoset/FastInfoset/1.2.13/FastInfoset-1.2.13.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-core/2.7.0/springfox-core-2.7.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/swagger/swagger-annotations/1.5.13/swagger-annotations-1.5.13.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/net/bytebuddy/byte-buddy/1.6.14/byte-buddy-1.6.14.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-swagger2/2.7.0/springfox-swagger2-2.7.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-schema/2.7.0/springfox-schema-2.7.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-spi/2.7.0/springfox-spi-2.7.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-swagger-common/2.7.0/springfox-swagger-common-2.7.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/swagger/swagger-models/1.5.13/swagger-models-1.5.13.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-spring-web/2.7.0/springfox-spring-web-2.7.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-schema/2.7.0/springfox-schema-2.7.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/reflections/reflections/0.9.11/reflections-0.9.11.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-core/2.7.0/springfox-core-2.7.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/javassist/javassist/3.20.0-GA/javassist-3.20.0-GA.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-swagger-common/2.7.0/springfox-swagger-common-2.7.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/com/google/guava/guava/18.0/guava-18.0.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/reflections/reflections/0.9.11/reflections-0.9.11.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-spring-web/2.7.0/springfox-spring-web-2.7.0.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/org/mapstruct/mapstruct/1.1.0.Final/mapstruct-1.1.0.Final.jar
Downloaded: http://172.17.4.50:8081/content/groups/public/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.jar (0 B at 0.0 KB/sec)
Downloading: http://172.17.4.50:8081/content/groups/public/io/springfox/springfox-swagger-ui/2.7.0/springfox-swagger-ui-2.7.0.jar