-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.txt
1473 lines (1470 loc) · 102 KB
/
dependencies.txt
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
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] giftly
[INFO] giftly-config-server
[INFO] giftly-auth-server
[INFO] giftly-discovery-service
[INFO] giftly-data-stream
[INFO] giftly-resource-store
[INFO] giftly-service
[INFO] giftly-search-service
[INFO] giftly-social-connect
[INFO] giftly-recommendation-service
[INFO] giftly-gateway
[INFO] giftly-hystrix-dashboard
[INFO] giftly-ui
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building giftly 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ giftly ---
[INFO] org.koko:giftly:pom:0.0.1-SNAPSHOT
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building giftly-config-server 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ giftly-config-server ---
[INFO] org.koko:giftly-config-server:jar:0.0.1-SNAPSHOT
[INFO] +- org.springframework.cloud:spring-cloud-config-server:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-config-client:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:1.3.1.RELEASE:compile
[INFO] | | | \- org.springframework.boot:spring-boot:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.cloud:spring-cloud-commons:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework.cloud:spring-cloud-context:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework:spring-web:jar:4.2.4.RELEASE:compile
[INFO] | | | +- org.springframework:spring-aop:jar:4.2.4.RELEASE:compile
[INFO] | | | | \- aopalliance:aopalliance:jar:1.0:compile
[INFO] | | | +- org.springframework:spring-beans:jar:4.2.4.RELEASE:compile
[INFO] | | | \- org.springframework:spring-context:jar:4.2.4.RELEASE:compile
[INFO] | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.6.4:compile
[INFO] | | \- com.fasterxml.jackson.core:jackson-databind:jar:2.6.4:compile
[INFO] | | \- com.fasterxml.jackson.core:jackson-core:jar:2.6.4:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-actuator:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter:jar:1.3.1.RELEASE:compile
[INFO] | | | \- org.springframework.boot:spring-boot-starter-logging:jar:1.3.1.RELEASE:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.1.3:compile
[INFO] | | | | +- ch.qos.logback:logback-core:jar:1.1.3:compile
[INFO] | | | | \- org.slf4j:slf4j-api:jar:1.7.13:compile
[INFO] | | | +- org.slf4j:jcl-over-slf4j:jar:1.7.13:compile
[INFO] | | | +- org.slf4j:jul-to-slf4j:jar:1.7.13:compile
[INFO] | | | \- org.slf4j:log4j-over-slf4j:jar:1.7.13:compile
[INFO] | | \- org.springframework.boot:spring-boot-actuator:jar:1.3.1.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-web:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-tomcat:jar:1.3.1.RELEASE:compile
[INFO] | | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:8.0.30:compile
[INFO] | | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:8.0.30:compile
[INFO] | | | +- org.apache.tomcat.embed:tomcat-embed-logging-juli:jar:8.0.30:compile
[INFO] | | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.0.30:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-validation:jar:1.3.1.RELEASE:compile
[INFO] | | | \- org.hibernate:hibernate-validator:jar:5.2.2.Final:compile
[INFO] | | | +- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] | | | +- org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile
[INFO] | | | \- com.fasterxml:classmate:jar:1.1.0:compile
[INFO] | | \- org.springframework:spring-webmvc:jar:4.2.4.RELEASE:compile
[INFO] | | \- org.springframework:spring-expression:jar:4.2.4.RELEASE:compile
[INFO] | +- org.springframework.security:spring-security-crypto:jar:4.0.3.RELEASE:compile
[INFO] | +- org.springframework.security:spring-security-rsa:jar:1.0.1.RELEASE:compile
[INFO] | | \- org.bouncycastle:bcpkix-jdk15on:jar:1.47:compile
[INFO] | | \- org.bouncycastle:bcprov-jdk15on:jar:1.47:compile
[INFO] | +- org.eclipse.jgit:org.eclipse.jgit:jar:3.5.3.201412180710-r:compile
[INFO] | | +- com.jcraft:jsch:jar:0.1.50:compile
[INFO] | | +- com.googlecode.javaewah:JavaEWAH:jar:0.7.9:compile
[INFO] | | \- org.apache.httpcomponents:httpclient:jar:4.5.1:compile
[INFO] | | +- org.apache.httpcomponents:httpcore:jar:4.4.4:compile
[INFO] | | \- commons-codec:commons-codec:jar:1.9:compile
[INFO] | \- org.yaml:snakeyaml:jar:1.16:compile
[INFO] \- org.springframework.boot:spring-boot-starter-test:jar:1.3.1.RELEASE:test
[INFO] +- junit:junit:jar:4.12:test
[INFO] +- org.mockito:mockito-core:jar:1.10.19:test
[INFO] | \- org.objenesis:objenesis:jar:2.1:test
[INFO] +- org.hamcrest:hamcrest-core:jar:1.3:test
[INFO] +- org.hamcrest:hamcrest-library:jar:1.3:test
[INFO] +- org.springframework:spring-core:jar:4.2.4.RELEASE:compile
[INFO] \- org.springframework:spring-test:jar:4.2.4.RELEASE:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building giftly-auth-server 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.7.2/jooq-codegen-maven-3.7.2.pom
4/4 KB Downloaded: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.7.2/jooq-codegen-maven-3.7.2.pom (4 KB at 6.4 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jooq/jooq-parent/3.7.2/jooq-parent-3.7.2.pom
4/19 KB 8/19 KB 12/19 KB 16/19 KB 19/19 KB Downloaded: https://repo.maven.apache.org/maven2/org/jooq/jooq-parent/3.7.2/jooq-parent-3.7.2.pom (19 KB at 168.8 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.7.2/jooq-codegen-maven-3.7.2.jar
4/15 KB 8/15 KB 12/15 KB 15/15 KB Downloaded: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.7.2/jooq-codegen-maven-3.7.2.jar (15 KB at 119.7 KB/sec)
[INFO]
[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ giftly-auth-server ---
[INFO] org.koko:giftly-auth-server:jar:0.0.1-SNAPSHOT
[INFO] +- org.springframework.boot:spring-boot-starter-security:jar:1.3.3.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:1.3.3.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot:jar:1.3.3.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:1.3.3.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:1.3.3.RELEASE:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.1.5:compile
[INFO] | | | | +- ch.qos.logback:logback-core:jar:1.1.5:compile
[INFO] | | | | \- org.slf4j:slf4j-api:jar:1.7.16:compile
[INFO] | | | +- org.slf4j:jcl-over-slf4j:jar:1.7.16:compile
[INFO] | | | +- org.slf4j:jul-to-slf4j:jar:1.7.16:compile
[INFO] | | | \- org.slf4j:log4j-over-slf4j:jar:1.7.16:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.16:runtime
[INFO] | +- org.springframework:spring-aop:jar:4.2.5.RELEASE:compile
[INFO] | | +- aopalliance:aopalliance:jar:1.0:compile
[INFO] | | \- org.springframework:spring-beans:jar:4.2.5.RELEASE:compile
[INFO] | +- org.springframework.security:spring-security-config:jar:4.0.3.RELEASE:compile
[INFO] | | +- org.springframework.security:spring-security-core:jar:4.0.3.RELEASE:compile
[INFO] | | \- org.springframework:spring-context:jar:4.2.5.RELEASE:compile
[INFO] | \- org.springframework.security:spring-security-web:jar:4.0.3.RELEASE:compile
[INFO] | \- org.springframework:spring-expression:jar:4.2.5.RELEASE:compile
[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:1.3.3.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:1.3.3.RELEASE:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:8.0.32:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:8.0.32:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-logging-juli:jar:8.0.32:compile
[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.0.32:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-validation:jar:1.3.3.RELEASE:compile
[INFO] | | \- org.hibernate:hibernate-validator:jar:5.2.4.Final:compile
[INFO] | | +- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] | | +- org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile
[INFO] | | \- com.fasterxml:classmate:jar:1.1.0:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-databind:jar:2.6.5:compile
[INFO] | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.6.5:compile
[INFO] | | \- com.fasterxml.jackson.core:jackson-core:jar:2.6.5:compile
[INFO] | +- org.springframework:spring-web:jar:4.2.5.RELEASE:compile
[INFO] | \- org.springframework:spring-webmvc:jar:4.2.5.RELEASE:compile
[INFO] +- org.springframework.boot:spring-boot-starter-actuator:jar:1.3.3.RELEASE:compile
[INFO] | \- org.springframework.boot:spring-boot-actuator:jar:1.3.3.RELEASE:compile
[INFO] +- io.jsonwebtoken:jjwt:jar:0.6.0:compile
[INFO] +- org.apache.httpcomponents:httpclient:jar:4.5.1:test
[INFO] | +- org.apache.httpcomponents:httpcore:jar:4.4.4:test
[INFO] | \- commons-codec:commons-codec:jar:1.9:test
[INFO] \- org.springframework.boot:spring-boot-starter-test:jar:1.3.3.RELEASE:test
[INFO] +- junit:junit:jar:4.12:test
[INFO] +- org.mockito:mockito-core:jar:1.10.19:test
[INFO] | \- org.objenesis:objenesis:jar:2.1:test
[INFO] +- org.hamcrest:hamcrest-core:jar:1.3:test
[INFO] +- org.hamcrest:hamcrest-library:jar:1.3:test
[INFO] +- org.springframework:spring-core:jar:4.2.5.RELEASE:compile
[INFO] \- org.springframework:spring-test:jar:4.2.5.RELEASE:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building giftly-discovery-service 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ giftly-discovery-service ---
[INFO] org.koko:giftly-discovery-service:jar:0.0.1-SNAPSHOT
[INFO] +- org.springframework.boot:spring-boot-starter-actuator:jar:1.3.1.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:1.3.1.RELEASE:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.1.3:compile
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.1.3:compile
[INFO] | | | +- org.slf4j:jcl-over-slf4j:jar:1.7.13:compile
[INFO] | | | +- org.slf4j:jul-to-slf4j:jar:1.7.13:compile
[INFO] | | | \- org.slf4j:log4j-over-slf4j:jar:1.7.13:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.16:runtime
[INFO] | \- org.springframework.boot:spring-boot-actuator:jar:1.3.1.RELEASE:compile
[INFO] | \- org.springframework:spring-context:jar:4.2.4.RELEASE:compile
[INFO] | +- org.springframework:spring-aop:jar:4.2.4.RELEASE:compile
[INFO] | | \- aopalliance:aopalliance:jar:1.0:compile
[INFO] | +- org.springframework:spring-beans:jar:4.2.4.RELEASE:compile
[INFO] | \- org.springframework:spring-expression:jar:4.2.4.RELEASE:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-config:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-starter:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework.cloud:spring-cloud-context:jar:1.1.0.M4:compile
[INFO] | | | \- org.springframework.security:spring-security-crypto:jar:4.0.3.RELEASE:compile
[INFO] | | \- org.springframework.cloud:spring-cloud-commons:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-config-client:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework:spring-web:jar:4.2.4.RELEASE:compile
[INFO] | | \- com.fasterxml.jackson.core:jackson-annotations:jar:2.6.4:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-databind:jar:2.6.4:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-core:jar:2.6.4:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-eureka-server:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-netflix-eureka-server:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-web:jar:1.3.1.RELEASE:compile
[INFO] | | | +- org.springframework.boot:spring-boot-starter-tomcat:jar:1.3.1.RELEASE:compile
[INFO] | | | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:8.0.30:compile
[INFO] | | | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:8.0.30:compile
[INFO] | | | | +- org.apache.tomcat.embed:tomcat-embed-logging-juli:jar:8.0.30:compile
[INFO] | | | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.0.30:compile
[INFO] | | | +- org.springframework.boot:spring-boot-starter-validation:jar:1.3.1.RELEASE:compile
[INFO] | | | | \- org.hibernate:hibernate-validator:jar:5.2.2.Final:compile
[INFO] | | | | +- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] | | | | +- org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile
[INFO] | | | | \- com.fasterxml:classmate:jar:1.1.0:compile
[INFO] | | | \- org.springframework:spring-webmvc:jar:4.2.4.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-freemarker:jar:1.3.1.RELEASE:compile
[INFO] | | | +- org.freemarker:freemarker:jar:2.3.23:compile
[INFO] | | | \- org.springframework:spring-context-support:jar:4.2.4.RELEASE:compile
[INFO] | | +- org.springframework.cloud:spring-cloud-netflix-core:jar:1.1.0.M4:compile
[INFO] | | +- com.netflix.eureka:eureka-client:jar:1.3.4:compile
[INFO] | | | +- org.codehaus.jettison:jettison:jar:1.3.7:runtime
[INFO] | | | | \- stax:stax-api:jar:1.0.1:runtime
[INFO] | | | +- com.netflix.netflix-commons:netflix-eventbus:jar:0.1.2:runtime
[INFO] | | | +- javax.ws.rs:jsr311-api:jar:1.1.1:compile
[INFO] | | | +- com.netflix.servo:servo-core:jar:0.10.0:runtime
[INFO] | | | | \- com.netflix.servo:servo-internal:jar:0.10.0:runtime
[INFO] | | | +- com.sun.jersey:jersey-core:jar:1.19:compile
[INFO] | | | +- com.sun.jersey:jersey-client:jar:1.19:runtime
[INFO] | | | +- com.sun.jersey.contribs:jersey-apache-client4:jar:1.19:runtime
[INFO] | | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:runtime
[INFO] | | | | +- org.apache.httpcomponents:httpcore:jar:4.4.4:runtime
[INFO] | | | | \- commons-codec:commons-codec:jar:1.9:runtime
[INFO] | | | +- com.google.inject:guice:jar:4.0:runtime
[INFO] | | | \- com.netflix.governator:governator-annotations:jar:1.10.4:runtime
[INFO] | | +- com.sun.jersey:jersey-servlet:jar:1.19:compile
[INFO] | | +- com.sun.jersey:jersey-server:jar:1.19:compile
[INFO] | | +- com.netflix.eureka:eureka-core:jar:1.3.4:compile
[INFO] | | | +- com.amazonaws:aws-java-sdk-core:jar:1.9.3:runtime
[INFO] | | | +- com.amazonaws:aws-java-sdk-ec2:jar:1.9.3:runtime
[INFO] | | | +- com.amazonaws:aws-java-sdk-autoscaling:jar:1.9.3:runtime
[INFO] | | | +- com.amazonaws:aws-java-sdk-sts:jar:1.9.3:runtime
[INFO] | | | +- com.amazonaws:aws-java-sdk-route53:jar:1.9.3:runtime
[INFO] | | | +- com.netflix.governator:governator:jar:1.10.4:runtime
[INFO] | | | | +- com.netflix.governator:governator-core:jar:1.10.4:runtime
[INFO] | | | | \- org.ow2.asm:asm:jar:5.0.4:runtime
[INFO] | | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-xml:jar:2.6.4:runtime
[INFO] | | | | +- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.6.4:runtime
[INFO] | | | | \- org.codehaus.woodstox:stax2-api:jar:3.1.4:runtime
[INFO] | | | \- org.codehaus.woodstox:woodstox-core-asl:jar:4.4.1:runtime
[INFO] | | | \- javax.xml.stream:stax-api:jar:1.0-2:runtime
[INFO] | | +- com.netflix.archaius:archaius-core:jar:0.7.1:compile
[INFO] | | | +- commons-configuration:commons-configuration:jar:1.8:runtime
[INFO] | | | \- com.google.guava:guava:jar:18.0:runtime
[INFO] | | \- javax.inject:javax.inject:jar:1:compile
[INFO] | +- org.springframework.cloud:spring-cloud-starter-ribbon:jar:1.1.0.M4:compile
[INFO] | | +- com.netflix.ribbon:ribbon:jar:2.1.0:compile
[INFO] | | | +- com.netflix.ribbon:ribbon-transport:jar:2.1.0:runtime
[INFO] | | | | +- io.reactivex:rxnetty-contexts:jar:0.4.9:runtime
[INFO] | | | | \- io.reactivex:rxnetty-servo:jar:0.4.9:runtime
[INFO] | | | +- com.netflix.hystrix:hystrix-core:jar:1.4.21:runtime
[INFO] | | | \- io.reactivex:rxnetty:jar:0.4.9:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-core:jar:2.1.0:compile
[INFO] | | | \- commons-lang:commons-lang:jar:2.6:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-httpclient:jar:2.1.0:compile
[INFO] | | | +- commons-collections:commons-collections:jar:3.2.2:runtime
[INFO] | | | \- com.netflix.netflix-commons:netflix-commons-util:jar:0.1.1:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-loadbalancer:jar:2.1.0:compile
[INFO] | | | \- com.netflix.netflix-commons:netflix-statistics:jar:0.1.1:runtime
[INFO] | | \- io.reactivex:rxjava:jar:1.0.14:compile
[INFO] | +- com.netflix.ribbon:ribbon-eureka:jar:2.1.0:compile
[INFO] | | +- com.netflix.eureka:eureka2-client-shaded:jar:2.0.0-rc.2:runtime
[INFO] | | | +- io.netty:netty-codec-http:jar:4.0.25.Final:runtime
[INFO] | | | | +- io.netty:netty-codec:jar:4.0.25.Final:runtime
[INFO] | | | | \- io.netty:netty-handler:jar:4.0.25.Final:runtime
[INFO] | | | \- io.netty:netty-transport-native-epoll:jar:4.0.25.Final:runtime
[INFO] | | | +- io.netty:netty-common:jar:4.0.25.Final:runtime
[INFO] | | | +- io.netty:netty-buffer:jar:4.0.25.Final:runtime
[INFO] | | | \- io.netty:netty-transport:jar:4.0.25.Final:runtime
[INFO] | | \- org.slf4j:slf4j-api:jar:1.7.13:compile
[INFO] | \- com.thoughtworks.xstream:xstream:jar:1.4.2:compile
[INFO] | +- xmlpull:xmlpull:jar:1.1.3.1:compile
[INFO] | \- xpp3:xpp3_min:jar:1.1.4c:compile
[INFO] \- org.springframework.boot:spring-boot-starter-test:jar:1.3.1.RELEASE:test
[INFO] +- junit:junit:jar:4.12:test
[INFO] +- org.mockito:mockito-core:jar:1.10.19:test
[INFO] | \- org.objenesis:objenesis:jar:2.1:test
[INFO] +- org.hamcrest:hamcrest-core:jar:1.3:test
[INFO] +- org.hamcrest:hamcrest-library:jar:1.3:test
[INFO] +- org.springframework:spring-core:jar:4.2.4.RELEASE:compile
[INFO] \- org.springframework:spring-test:jar:4.2.4.RELEASE:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building giftly-data-stream 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ giftly-data-stream ---
[INFO] org.koko:giftly-data-stream:jar:0.0.1-SNAPSHOT
[INFO] +- org.apache.spark:spark-core_2.10:jar:1.5.2:provided
[INFO] | +- org.apache.avro:avro-mapred:jar:hadoop2:1.7.7:provided
[INFO] | | +- org.apache.avro:avro-ipc:jar:1.7.7:provided
[INFO] | | | \- org.apache.avro:avro:jar:1.7.7:provided
[INFO] | | +- org.apache.avro:avro-ipc:jar:tests:1.7.7:provided
[INFO] | | +- org.codehaus.jackson:jackson-core-asl:jar:1.9.13:provided
[INFO] | | \- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:provided
[INFO] | +- com.twitter:chill_2.10:jar:0.5.0:provided
[INFO] | | \- com.esotericsoftware.kryo:kryo:jar:2.21:provided
[INFO] | | +- com.esotericsoftware.reflectasm:reflectasm:jar:shaded:1.07:provided
[INFO] | | +- com.esotericsoftware.minlog:minlog:jar:1.2:provided
[INFO] | | \- org.objenesis:objenesis:jar:2.1:provided
[INFO] | +- com.twitter:chill-java:jar:0.5.0:provided
[INFO] | +- org.apache.hadoop:hadoop-client:jar:2.2.0:provided
[INFO] | | +- org.apache.hadoop:hadoop-common:jar:2.2.0:provided
[INFO] | | | +- commons-cli:commons-cli:jar:1.2:provided
[INFO] | | | +- org.apache.commons:commons-math:jar:2.1:provided
[INFO] | | | +- xmlenc:xmlenc:jar:0.52:provided
[INFO] | | | +- commons-configuration:commons-configuration:jar:1.8:provided
[INFO] | | | +- org.apache.hadoop:hadoop-auth:jar:2.2.0:provided
[INFO] | | | \- org.apache.commons:commons-compress:jar:1.4.1:provided
[INFO] | | | \- org.tukaani:xz:jar:1.0:provided
[INFO] | | +- org.apache.hadoop:hadoop-hdfs:jar:2.2.0:provided
[INFO] | | | \- org.mortbay.jetty:jetty-util:jar:6.1.26:provided
[INFO] | | +- org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.2.0:provided
[INFO] | | | +- org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.2.0:provided
[INFO] | | | \- org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.2.0:provided
[INFO] | | +- org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.2.0:provided
[INFO] | | +- org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.2.0:provided
[INFO] | | \- org.apache.hadoop:hadoop-annotations:jar:2.2.0:provided
[INFO] | +- org.apache.spark:spark-launcher_2.10:jar:1.5.2:provided
[INFO] | +- org.apache.spark:spark-network-common_2.10:jar:1.5.2:provided
[INFO] | +- org.apache.spark:spark-network-shuffle_2.10:jar:1.5.2:provided
[INFO] | +- org.apache.spark:spark-unsafe_2.10:jar:1.5.2:provided
[INFO] | +- net.java.dev.jets3t:jets3t:jar:0.7.1:provided
[INFO] | | +- commons-codec:commons-codec:jar:1.3:provided
[INFO] | | \- commons-httpclient:commons-httpclient:jar:3.1:provided
[INFO] | +- org.apache.curator:curator-recipes:jar:2.8.0:provided
[INFO] | | +- org.apache.curator:curator-framework:jar:2.8.0:provided
[INFO] | | \- org.apache.zookeeper:zookeeper:jar:3.4.6:provided
[INFO] | | \- jline:jline:jar:0.9.94:provided
[INFO] | +- org.eclipse.jetty.orbit:javax.servlet:jar:3.0.0.v201112011016:provided
[INFO] | +- org.apache.commons:commons-lang3:jar:3.3.2:compile
[INFO] | +- org.apache.commons:commons-math3:jar:3.4.1:provided
[INFO] | +- com.google.code.findbugs:jsr305:jar:1.3.9:provided
[INFO] | +- org.slf4j:slf4j-api:jar:1.7.13:compile
[INFO] | +- org.slf4j:jul-to-slf4j:jar:1.7.13:provided
[INFO] | +- org.slf4j:jcl-over-slf4j:jar:1.7.13:provided
[INFO] | +- log4j:log4j:jar:1.2.17:compile
[INFO] | +- org.slf4j:slf4j-log4j12:jar:1.7.13:provided
[INFO] | +- com.ning:compress-lzf:jar:1.0.3:provided
[INFO] | +- org.xerial.snappy:snappy-java:jar:1.1.1.7:compile
[INFO] | +- net.jpountz.lz4:lz4:jar:1.3.0:compile
[INFO] | +- org.roaringbitmap:RoaringBitmap:jar:0.4.5:provided
[INFO] | +- commons-net:commons-net:jar:2.2:provided
[INFO] | +- com.typesafe.akka:akka-remote_2.10:jar:2.3.11:provided
[INFO] | | +- com.typesafe.akka:akka-actor_2.10:jar:2.3.11:provided
[INFO] | | | \- com.typesafe:config:jar:1.2.1:provided
[INFO] | | +- io.netty:netty:jar:3.8.0.Final:provided
[INFO] | | +- com.google.protobuf:protobuf-java:jar:2.5.0:provided
[INFO] | | \- org.uncommons.maths:uncommons-maths:jar:1.2.2a:provided
[INFO] | +- com.typesafe.akka:akka-slf4j_2.10:jar:2.3.11:provided
[INFO] | +- org.scala-lang:scala-library:jar:2.10.4:compile
[INFO] | +- org.json4s:json4s-jackson_2.10:jar:3.2.10:provided
[INFO] | | \- org.json4s:json4s-core_2.10:jar:3.2.10:provided
[INFO] | | +- org.json4s:json4s-ast_2.10:jar:3.2.10:provided
[INFO] | | \- org.scala-lang:scalap:jar:2.10.0:provided
[INFO] | +- com.sun.jersey:jersey-server:jar:1.19:provided
[INFO] | +- com.sun.jersey:jersey-core:jar:1.19:provided
[INFO] | | \- javax.ws.rs:jsr311-api:jar:1.1.1:provided
[INFO] | +- org.apache.mesos:mesos:jar:shaded-protobuf:0.21.1:provided
[INFO] | +- io.netty:netty-all:jar:4.0.29.Final:provided
[INFO] | +- com.clearspring.analytics:stream:jar:2.7.0:provided
[INFO] | +- io.dropwizard.metrics:metrics-core:jar:3.1.2:provided
[INFO] | +- io.dropwizard.metrics:metrics-jvm:jar:3.1.2:provided
[INFO] | +- io.dropwizard.metrics:metrics-json:jar:3.1.2:provided
[INFO] | +- io.dropwizard.metrics:metrics-graphite:jar:3.1.2:provided
[INFO] | +- com.fasterxml.jackson.core:jackson-databind:jar:2.6.4:provided
[INFO] | | \- com.fasterxml.jackson.core:jackson-annotations:jar:2.6.4:provided
[INFO] | +- com.fasterxml.jackson.module:jackson-module-scala_2.10:jar:2.4.4:provided
[INFO] | | \- com.thoughtworks.paranamer:paranamer:jar:2.6:provided
[INFO] | +- org.apache.ivy:ivy:jar:2.4.0:provided
[INFO] | +- oro:oro:jar:2.0.8:provided
[INFO] | +- org.tachyonproject:tachyon-client:jar:0.7.1:provided
[INFO] | | +- commons-lang:commons-lang:jar:2.4:provided
[INFO] | | +- commons-io:commons-io:jar:2.4:provided
[INFO] | | +- org.apache.curator:curator-client:jar:2.1.0-incubating:provided
[INFO] | | +- org.tachyonproject:tachyon-underfs-hdfs:jar:0.7.1:provided
[INFO] | | \- org.tachyonproject:tachyon-underfs-local:jar:0.7.1:provided
[INFO] | +- net.razorvine:pyrolite:jar:4.4:provided
[INFO] | +- net.sf.py4j:py4j:jar:0.8.2.1:provided
[INFO] | \- org.spark-project.spark:unused:jar:1.0.0:compile
[INFO] +- org.apache.spark:spark-yarn_2.10:jar:1.5.2:provided
[INFO] | +- org.apache.hadoop:hadoop-yarn-api:jar:2.2.0:provided
[INFO] | | +- com.google.inject.extensions:guice-servlet:jar:3.0:provided
[INFO] | | +- com.google.inject:guice:jar:3.0:provided
[INFO] | | | +- javax.inject:javax.inject:jar:1:provided
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:provided
[INFO] | | +- com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:jar:1.9:provided
[INFO] | | | +- com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.9:provided
[INFO] | | | | +- javax.servlet:javax.servlet-api:jar:3.1.0:provided
[INFO] | | | | +- junit:junit:jar:4.12:provided
[INFO] | | | | | \- org.hamcrest:hamcrest-core:jar:1.3:provided
[INFO] | | | | \- com.sun.jersey:jersey-client:jar:1.19:provided
[INFO] | | | \- com.sun.jersey:jersey-grizzly2:jar:1.9:provided
[INFO] | | | +- org.glassfish.grizzly:grizzly-http:jar:2.1.2:provided
[INFO] | | | | \- org.glassfish.grizzly:grizzly-framework:jar:2.1.2:provided
[INFO] | | | | \- org.glassfish.gmbal:gmbal-api-only:jar:3.0.0-b023:provided
[INFO] | | | | \- org.glassfish.external:management-api:jar:3.0.0-b012:provided
[INFO] | | | +- org.glassfish.grizzly:grizzly-http-server:jar:2.1.2:provided
[INFO] | | | | \- org.glassfish.grizzly:grizzly-rcm:jar:2.1.2:provided
[INFO] | | | +- org.glassfish.grizzly:grizzly-http-servlet:jar:2.1.2:provided
[INFO] | | | \- org.glassfish:javax.servlet:jar:3.1:provided
[INFO] | | +- com.sun.jersey:jersey-json:jar:1.9:provided
[INFO] | | | +- org.codehaus.jettison:jettison:jar:1.1:provided
[INFO] | | | | \- stax:stax-api:jar:1.0.1:provided
[INFO] | | | +- com.sun.xml.bind:jaxb-impl:jar:2.2.3-1:provided
[INFO] | | | | \- javax.xml.bind:jaxb-api:jar:2.2.2:provided
[INFO] | | | | \- javax.activation:activation:jar:1.1:provided
[INFO] | | | +- org.codehaus.jackson:jackson-jaxrs:jar:1.8.3:provided
[INFO] | | | \- org.codehaus.jackson:jackson-xc:jar:1.8.3:provided
[INFO] | | \- com.sun.jersey.contribs:jersey-guice:jar:1.9:provided
[INFO] | +- org.apache.hadoop:hadoop-yarn-common:jar:2.2.0:provided
[INFO] | +- org.apache.hadoop:hadoop-yarn-server-web-proxy:jar:2.2.0:provided
[INFO] | | \- org.apache.hadoop:hadoop-yarn-server-common:jar:2.2.0:provided
[INFO] | \- org.apache.hadoop:hadoop-yarn-client:jar:2.2.0:provided
[INFO] +- org.apache.spark:spark-streaming_2.10:jar:1.5.2:provided
[INFO] +- org.apache.spark:spark-repl_2.10:jar:1.5.2:provided
[INFO] | +- org.apache.spark:spark-bagel_2.10:jar:1.5.2:provided
[INFO] | +- org.apache.spark:spark-mllib_2.10:jar:1.5.2:provided
[INFO] | | +- org.apache.spark:spark-graphx_2.10:jar:1.5.2:provided
[INFO] | | | +- com.github.fommil.netlib:core:jar:1.1.2:provided
[INFO] | | | \- net.sourceforge.f2j:arpack_combined_all:jar:0.1:provided
[INFO] | | +- org.scalanlp:breeze_2.10:jar:0.11.2:provided
[INFO] | | | +- org.scalanlp:breeze-macros_2.10:jar:0.11.2:provided
[INFO] | | | | \- org.scalamacros:quasiquotes_2.10:jar:2.0.0-M8:provided
[INFO] | | | +- net.sf.opencsv:opencsv:jar:2.3:provided
[INFO] | | | +- com.github.rwl:jtransforms:jar:2.4.0:provided
[INFO] | | | \- org.spire-math:spire_2.10:jar:0.7.4:provided
[INFO] | | | \- org.spire-math:spire-macros_2.10:jar:0.7.4:provided
[INFO] | | \- org.jpmml:pmml-model:jar:1.1.15:provided
[INFO] | | +- org.jpmml:pmml-agent:jar:1.1.15:provided
[INFO] | | \- org.jpmml:pmml-schema:jar:1.1.15:provided
[INFO] | +- org.apache.spark:spark-sql_2.10:jar:1.5.2:provided
[INFO] | | +- org.apache.spark:spark-catalyst_2.10:jar:1.5.2:provided
[INFO] | | | \- org.codehaus.janino:janino:jar:2.7.8:provided
[INFO] | | | \- org.codehaus.janino:commons-compiler:jar:2.7.8:provided
[INFO] | | +- org.apache.parquet:parquet-column:jar:1.7.0:provided
[INFO] | | | +- org.apache.parquet:parquet-common:jar:1.7.0:provided
[INFO] | | | \- org.apache.parquet:parquet-encoding:jar:1.7.0:provided
[INFO] | | | \- org.apache.parquet:parquet-generator:jar:1.7.0:provided
[INFO] | | \- org.apache.parquet:parquet-hadoop:jar:1.7.0:provided
[INFO] | | +- org.apache.parquet:parquet-format:jar:2.3.0-incubating:provided
[INFO] | | \- org.apache.parquet:parquet-jackson:jar:1.7.0:provided
[INFO] | +- org.scala-lang:scala-compiler:jar:2.10.4:provided
[INFO] | +- org.scala-lang:scala-reflect:jar:2.10.4:compile
[INFO] | \- org.scala-lang:jline:jar:2.10.4:provided
[INFO] | \- org.fusesource.jansi:jansi:jar:1.4:provided
[INFO] +- org.apache.spark:spark-streaming-kafka_2.10:jar:1.5.2:compile
[INFO] | \- org.apache.kafka:kafka_2.10:jar:0.8.2.1:compile
[INFO] | +- com.yammer.metrics:metrics-core:jar:2.2.0:compile
[INFO] | +- org.apache.kafka:kafka-clients:jar:0.8.2.1:compile
[INFO] | \- com.101tec:zkclient:jar:0.3:compile
[INFO] +- com.datastax.cassandra:cassandra-driver-core:jar:2.1.9:compile
[INFO] | +- io.netty:netty-handler:jar:4.0.27.Final:compile
[INFO] | | +- io.netty:netty-buffer:jar:4.0.27.Final:compile
[INFO] | | | \- io.netty:netty-common:jar:4.0.27.Final:compile
[INFO] | | +- io.netty:netty-transport:jar:4.0.27.Final:compile
[INFO] | | \- io.netty:netty-codec:jar:4.0.27.Final:compile
[INFO] | +- com.google.guava:guava:jar:18.0:compile
[INFO] | \- com.codahale.metrics:metrics-core:jar:3.0.2:compile
[INFO] +- com.datastax.spark:spark-cassandra-connector_2.10:jar:1.4.0:compile
[INFO] | +- org.apache.cassandra:cassandra-clientutil:jar:2.1.5:compile
[INFO] | +- org.joda:joda-convert:jar:1.2:compile
[INFO] | +- joda-time:joda-time:jar:2.8.2:compile
[INFO] | \- com.twitter:jsr166e:jar:1.1.0:compile
[INFO] +- com.datastax.spark:spark-cassandra-connector-java_2.10:jar:1.4.0:compile
[INFO] \- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.7.0:compile
[INFO] \- com.fasterxml.jackson.core:jackson-core:jar:2.6.4:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building giftly-resource-store 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ giftly-resource-store ---
[INFO] org.koko:giftly-resource-store:jar:0.0.1-SNAPSHOT
[INFO] +- com.amazonaws:aws-java-sdk:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-importexport:jar:1.9.3:compile
[INFO] | | \- com.amazonaws:aws-java-sdk-core:jar:1.9.3:compile
[INFO] | | +- commons-logging:commons-logging:jar:1.1.3:compile
[INFO] | | \- joda-time:joda-time:jar:2.8.2:compile
[INFO] | +- com.amazonaws:aws-java-sdk-simpledb:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-sts:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-redshift:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-elastictranscoder:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-iam:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-glacier:jar:1.9.3:compile
[INFO] | | +- com.amazonaws:aws-java-sdk-sqs:jar:1.9.3:compile
[INFO] | | +- com.amazonaws:aws-java-sdk-sns:jar:1.9.3:compile
[INFO] | | \- com.amazonaws:aws-java-sdk-s3:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-ec2:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-cloudtrail:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-directconnect:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-opsworks:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-cognitosync:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-elasticbeanstalk:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-autoscaling:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-cloudwatchmetrics:jar:1.9.3:compile
[INFO] | | +- com.amazonaws:aws-java-sdk-cloudwatch:jar:1.9.3:compile
[INFO] | | \- com.amazonaws:aws-java-sdk-dynamodb:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-ses:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-cloudfront:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-route53:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-cloudsearch:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-swf-libraries:jar:1.9.3:compile
[INFO] | | \- com.amazonaws:aws-java-sdk-simpleworkflow:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-elasticloadbalancing:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-datapipeline:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-storagegateway:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-emr:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-rds:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-cloudformation:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-kinesis:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-cognitoidentity:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-support:jar:1.9.3:compile
[INFO] | +- com.amazonaws:aws-java-sdk-elasticache:jar:1.9.3:compile
[INFO] | \- com.amazonaws:aws-java-sdk-logs:jar:1.9.3:compile
[INFO] +- org.springframework.boot:spring-boot-starter-actuator:jar:1.3.1.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:1.3.1.RELEASE:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.1.3:compile
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.1.3:compile
[INFO] | | | +- org.slf4j:jcl-over-slf4j:jar:1.7.13:compile
[INFO] | | | +- org.slf4j:jul-to-slf4j:jar:1.7.13:compile
[INFO] | | | \- org.slf4j:log4j-over-slf4j:jar:1.7.13:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.16:runtime
[INFO] | \- org.springframework.boot:spring-boot-actuator:jar:1.3.1.RELEASE:compile
[INFO] | \- org.springframework:spring-context:jar:4.2.4.RELEASE:compile
[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:1.3.1.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:8.0.30:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:8.0.30:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-logging-juli:jar:8.0.30:compile
[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.0.30:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-validation:jar:1.3.1.RELEASE:compile
[INFO] | | \- org.hibernate:hibernate-validator:jar:5.2.2.Final:compile
[INFO] | | +- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] | | +- org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile
[INFO] | | \- com.fasterxml:classmate:jar:1.1.0:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-databind:jar:2.6.4:compile
[INFO] | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.6.4:compile
[INFO] | | \- com.fasterxml.jackson.core:jackson-core:jar:2.6.4:compile
[INFO] | +- org.springframework:spring-web:jar:4.2.4.RELEASE:compile
[INFO] | | +- org.springframework:spring-aop:jar:4.2.4.RELEASE:compile
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:compile
[INFO] | | \- org.springframework:spring-beans:jar:4.2.4.RELEASE:compile
[INFO] | \- org.springframework:spring-webmvc:jar:4.2.4.RELEASE:compile
[INFO] | \- org.springframework:spring-expression:jar:4.2.4.RELEASE:compile
[INFO] +- org.springframework.boot:spring-boot-starter-websocket:jar:1.3.1.RELEASE:compile
[INFO] | +- org.springframework:spring-messaging:jar:4.2.4.RELEASE:compile
[INFO] | \- org.springframework:spring-websocket:jar:4.2.4.RELEASE:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-config:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-starter:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework.cloud:spring-cloud-context:jar:1.1.0.M4:compile
[INFO] | | | \- org.springframework.security:spring-security-crypto:jar:4.0.3.RELEASE:compile
[INFO] | | \- org.springframework.cloud:spring-cloud-commons:jar:1.1.0.M4:compile
[INFO] | \- org.springframework.cloud:spring-cloud-config-client:jar:1.1.0.M4:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-eureka:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-netflix-core:jar:1.1.0.M4:compile
[INFO] | +- com.netflix.eureka:eureka-client:jar:1.3.4:compile
[INFO] | | +- org.codehaus.jettison:jettison:jar:1.3.7:runtime
[INFO] | | | \- stax:stax-api:jar:1.0.1:runtime
[INFO] | | +- com.netflix.netflix-commons:netflix-eventbus:jar:0.1.2:runtime
[INFO] | | +- com.netflix.archaius:archaius-core:jar:0.7.1:runtime
[INFO] | | | +- commons-configuration:commons-configuration:jar:1.8:runtime
[INFO] | | | \- com.google.guava:guava:jar:18.0:runtime
[INFO] | | +- javax.ws.rs:jsr311-api:jar:1.1.1:runtime
[INFO] | | +- com.netflix.servo:servo-core:jar:0.10.0:runtime
[INFO] | | | \- com.netflix.servo:servo-internal:jar:0.10.0:runtime
[INFO] | | +- com.sun.jersey:jersey-core:jar:1.19:runtime
[INFO] | | +- com.sun.jersey:jersey-client:jar:1.19:runtime
[INFO] | | +- com.sun.jersey.contribs:jersey-apache-client4:jar:1.19:runtime
[INFO] | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:compile
[INFO] | | | +- org.apache.httpcomponents:httpcore:jar:4.4.4:compile
[INFO] | | | \- commons-codec:commons-codec:jar:1.9:compile
[INFO] | | +- com.google.inject:guice:jar:4.0:runtime
[INFO] | | | \- javax.inject:javax.inject:jar:1:runtime
[INFO] | | \- com.netflix.governator:governator-annotations:jar:1.10.4:runtime
[INFO] | +- org.springframework.cloud:spring-cloud-starter-ribbon:jar:1.1.0.M4:compile
[INFO] | | +- com.netflix.ribbon:ribbon:jar:2.1.0:compile
[INFO] | | | +- com.netflix.ribbon:ribbon-transport:jar:2.1.0:runtime
[INFO] | | | | +- io.reactivex:rxnetty-contexts:jar:0.4.9:runtime
[INFO] | | | | \- io.reactivex:rxnetty-servo:jar:0.4.9:runtime
[INFO] | | | +- com.netflix.hystrix:hystrix-core:jar:1.4.21:runtime
[INFO] | | | \- io.reactivex:rxnetty:jar:0.4.9:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-core:jar:2.1.0:compile
[INFO] | | | \- commons-lang:commons-lang:jar:2.6:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-httpclient:jar:2.1.0:compile
[INFO] | | | +- commons-collections:commons-collections:jar:3.2.2:runtime
[INFO] | | | \- com.netflix.netflix-commons:netflix-commons-util:jar:0.1.1:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-loadbalancer:jar:2.1.0:compile
[INFO] | | | \- com.netflix.netflix-commons:netflix-statistics:jar:0.1.1:runtime
[INFO] | | \- io.reactivex:rxjava:jar:1.0.14:compile
[INFO] | +- com.netflix.ribbon:ribbon-eureka:jar:2.1.0:compile
[INFO] | | +- com.netflix.eureka:eureka2-client-shaded:jar:2.0.0-rc.2:runtime
[INFO] | | | +- io.netty:netty-codec-http:jar:4.0.25.Final:runtime
[INFO] | | | | +- io.netty:netty-codec:jar:4.0.25.Final:runtime
[INFO] | | | | \- io.netty:netty-handler:jar:4.0.25.Final:runtime
[INFO] | | | \- io.netty:netty-transport-native-epoll:jar:4.0.25.Final:runtime
[INFO] | | | +- io.netty:netty-common:jar:4.0.25.Final:runtime
[INFO] | | | +- io.netty:netty-buffer:jar:4.0.25.Final:runtime
[INFO] | | | \- io.netty:netty-transport:jar:4.0.25.Final:runtime
[INFO] | | \- org.slf4j:slf4j-api:jar:1.7.13:compile
[INFO] | \- com.thoughtworks.xstream:xstream:jar:1.4.2:compile
[INFO] | +- xmlpull:xmlpull:jar:1.1.3.1:compile
[INFO] | \- xpp3:xpp3_min:jar:1.1.4c:compile
[INFO] \- org.springframework.boot:spring-boot-starter-test:jar:1.3.1.RELEASE:test
[INFO] +- junit:junit:jar:4.12:test
[INFO] +- org.mockito:mockito-core:jar:1.10.19:test
[INFO] | \- org.objenesis:objenesis:jar:2.1:test
[INFO] +- org.hamcrest:hamcrest-core:jar:1.3:test
[INFO] +- org.hamcrest:hamcrest-library:jar:1.3:test
[INFO] +- org.springframework:spring-core:jar:4.2.4.RELEASE:compile
[INFO] \- org.springframework:spring-test:jar:4.2.4.RELEASE:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building giftly-service 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ giftly-service ---
[INFO] org.koko:giftly-service:jar:0.0.1-SNAPSHOT
[INFO] +- org.springframework.cloud:spring-cloud-starter-config:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-starter:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework.cloud:spring-cloud-context:jar:1.1.0.M4:compile
[INFO] | | | \- org.springframework.security:spring-security-crypto:jar:4.0.3.RELEASE:compile
[INFO] | | \- org.springframework.cloud:spring-cloud-commons:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-config-client:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:1.3.1.RELEASE:compile
[INFO] | | \- org.springframework:spring-web:jar:4.2.4.RELEASE:compile
[INFO] | | \- org.springframework:spring-aop:jar:4.2.4.RELEASE:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-databind:jar:2.6.4:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-core:jar:2.6.4:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-eureka:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-web:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-tomcat:jar:1.3.1.RELEASE:compile
[INFO] | | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:8.0.30:compile
[INFO] | | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:8.0.30:compile
[INFO] | | | +- org.apache.tomcat.embed:tomcat-embed-logging-juli:jar:8.0.30:compile
[INFO] | | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.0.30:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-validation:jar:1.3.1.RELEASE:compile
[INFO] | | \- org.springframework:spring-webmvc:jar:4.2.4.RELEASE:compile
[INFO] | +- org.springframework.cloud:spring-cloud-netflix-core:jar:1.1.0.M4:compile
[INFO] | | \- org.springframework.boot:spring-boot:jar:1.3.1.RELEASE:compile
[INFO] | +- com.netflix.eureka:eureka-client:jar:1.3.4:compile
[INFO] | | +- org.codehaus.jettison:jettison:jar:1.3.7:runtime
[INFO] | | | \- stax:stax-api:jar:1.0.1:runtime
[INFO] | | +- com.netflix.netflix-commons:netflix-eventbus:jar:0.1.2:runtime
[INFO] | | +- com.netflix.archaius:archaius-core:jar:0.7.1:runtime
[INFO] | | | +- commons-configuration:commons-configuration:jar:1.8:runtime
[INFO] | | | \- com.google.guava:guava:jar:18.0:compile
[INFO] | | +- javax.ws.rs:jsr311-api:jar:1.1.1:runtime
[INFO] | | +- com.netflix.servo:servo-core:jar:0.10.0:runtime
[INFO] | | | \- com.netflix.servo:servo-internal:jar:0.10.0:runtime
[INFO] | | +- com.sun.jersey:jersey-core:jar:1.19:runtime
[INFO] | | +- com.sun.jersey:jersey-client:jar:1.19:runtime
[INFO] | | +- com.sun.jersey.contribs:jersey-apache-client4:jar:1.19:runtime
[INFO] | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:runtime
[INFO] | | | +- org.apache.httpcomponents:httpcore:jar:4.4.4:runtime
[INFO] | | | \- commons-codec:commons-codec:jar:1.9:runtime
[INFO] | | +- com.google.inject:guice:jar:4.0:runtime
[INFO] | | | +- javax.inject:javax.inject:jar:1:runtime
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:compile
[INFO] | | \- com.netflix.governator:governator-annotations:jar:1.10.4:runtime
[INFO] | +- org.springframework.cloud:spring-cloud-starter-ribbon:jar:1.1.0.M4:compile
[INFO] | | +- com.netflix.ribbon:ribbon:jar:2.1.0:compile
[INFO] | | | +- com.netflix.ribbon:ribbon-transport:jar:2.1.0:runtime
[INFO] | | | | +- io.reactivex:rxnetty-contexts:jar:0.4.9:runtime
[INFO] | | | | \- io.reactivex:rxnetty-servo:jar:0.4.9:runtime
[INFO] | | | +- com.netflix.hystrix:hystrix-core:jar:1.4.21:runtime
[INFO] | | | \- io.reactivex:rxnetty:jar:0.4.9:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-core:jar:2.1.0:compile
[INFO] | | | \- commons-lang:commons-lang:jar:2.6:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-httpclient:jar:2.1.0:compile
[INFO] | | | +- commons-collections:commons-collections:jar:3.2.2:runtime
[INFO] | | | \- com.netflix.netflix-commons:netflix-commons-util:jar:0.1.1:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-loadbalancer:jar:2.1.0:compile
[INFO] | | | \- com.netflix.netflix-commons:netflix-statistics:jar:0.1.1:runtime
[INFO] | | \- io.reactivex:rxjava:jar:1.0.14:compile
[INFO] | +- com.netflix.ribbon:ribbon-eureka:jar:2.1.0:compile
[INFO] | | +- com.netflix.eureka:eureka2-client-shaded:jar:2.0.0-rc.2:runtime
[INFO] | | | +- io.netty:netty-codec-http:jar:4.0.25.Final:runtime
[INFO] | | | | +- io.netty:netty-codec:jar:4.0.25.Final:runtime
[INFO] | | | | \- io.netty:netty-handler:jar:4.0.25.Final:runtime
[INFO] | | | \- io.netty:netty-transport-native-epoll:jar:4.0.25.Final:runtime
[INFO] | | | +- io.netty:netty-common:jar:4.0.25.Final:runtime
[INFO] | | | +- io.netty:netty-buffer:jar:4.0.25.Final:runtime
[INFO] | | | \- io.netty:netty-transport:jar:4.0.25.Final:runtime
[INFO] | | \- org.slf4j:slf4j-api:jar:1.7.13:compile
[INFO] | \- com.thoughtworks.xstream:xstream:jar:1.4.2:compile
[INFO] | +- xmlpull:xmlpull:jar:1.1.3.1:compile
[INFO] | \- xpp3:xpp3_min:jar:1.1.4c:compile
[INFO] +- org.springframework.boot:spring-boot-starter-data-mongodb:jar:1.3.1.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:1.3.1.RELEASE:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.1.3:compile
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.1.3:compile
[INFO] | | | +- org.slf4j:jul-to-slf4j:jar:1.7.13:compile
[INFO] | | | \- org.slf4j:log4j-over-slf4j:jar:1.7.13:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.16:runtime
[INFO] | +- org.mongodb:mongo-java-driver:jar:2.13.3:compile
[INFO] | \- org.springframework.data:spring-data-mongodb:jar:1.8.2.RELEASE:compile
[INFO] | +- org.springframework:spring-tx:jar:4.2.4.RELEASE:compile
[INFO] | +- org.springframework:spring-context:jar:4.2.4.RELEASE:compile
[INFO] | +- org.springframework:spring-beans:jar:4.2.4.RELEASE:compile
[INFO] | +- org.springframework:spring-expression:jar:4.2.4.RELEASE:compile
[INFO] | +- org.springframework.data:spring-data-commons:jar:1.11.2.RELEASE:compile
[INFO] | \- org.slf4j:jcl-over-slf4j:jar:1.7.13:compile
[INFO] +- org.springframework.boot:spring-boot-starter-data-rest:jar:1.3.1.RELEASE:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.6.4:compile
[INFO] | \- org.springframework.data:spring-data-rest-webmvc:jar:2.4.2.RELEASE:compile
[INFO] | +- org.springframework.data:spring-data-rest-core:jar:2.4.2.RELEASE:compile
[INFO] | | +- org.springframework.hateoas:spring-hateoas:jar:0.19.0.RELEASE:compile
[INFO] | | +- org.springframework.plugin:spring-plugin-core:jar:1.2.0.RELEASE:compile
[INFO] | | \- org.atteo:evo-inflector:jar:1.2.1:compile
[INFO] | \- com.github.fge:json-patch:jar:1.7:compile
[INFO] | +- com.github.fge:jackson-coreutils:jar:1.6:compile
[INFO] | | \- com.github.fge:msg-simple:jar:1.1:compile
[INFO] | | \- com.github.fge:btf:jar:1.2:compile
[INFO] | \- com.google.code.findbugs:jsr305:jar:2.0.1:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-stream-kafka:jar:1.0.0.M3:compile
[INFO] | +- org.springframework.cloud:spring-cloud-stream-binder-kafka:jar:1.0.0.M3:compile
[INFO] | | +- org.springframework.cloud:spring-cloud-stream-codec:jar:1.0.0.M3:compile
[INFO] | | | \- com.esotericsoftware:kryo-shaded:jar:3.0.3:compile
[INFO] | | | \- com.esotericsoftware:minlog:jar:1.3.0:compile
[INFO] | | +- org.springframework.integration:spring-integration-kafka:jar:1.2.0.RELEASE:compile
[INFO] | | | +- org.apache.avro:avro:jar:1.7.6:compile
[INFO] | | | | +- org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile
[INFO] | | | | +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile
[INFO] | | | | +- com.thoughtworks.paranamer:paranamer:jar:2.3:compile
[INFO] | | | | \- org.apache.commons:commons-compress:jar:1.4.1:compile
[INFO] | | | | \- org.tukaani:xz:jar:1.0:compile
[INFO] | | | +- com.yammer.metrics:metrics-annotation:jar:2.2.0:runtime
[INFO] | | | +- io.projectreactor:reactor-core:jar:2.0.7.RELEASE:compile
[INFO] | | | | \- org.reactivestreams:reactive-streams:jar:1.0.0:compile
[INFO] | | | +- com.yammer.metrics:metrics-core:jar:2.2.0:compile
[INFO] | | | \- com.goldmansachs:gs-collections:jar:5.0.0:compile
[INFO] | | | \- com.goldmansachs:gs-collections-api:jar:5.0.0:compile
[INFO] | | +- org.apache.kafka:kafka_2.10:jar:0.8.2.1:compile
[INFO] | | | +- org.scala-lang:scala-library:jar:2.10.4:compile
[INFO] | | | +- org.apache.zookeeper:zookeeper:jar:3.4.6:compile
[INFO] | | | | +- log4j:log4j:jar:1.2.17:compile
[INFO] | | | | +- jline:jline:jar:0.9.94:compile
[INFO] | | | | \- io.netty:netty:jar:3.7.0.Final:compile
[INFO] | | | +- net.sf.jopt-simple:jopt-simple:jar:3.2:compile
[INFO] | | | \- com.101tec:zkclient:jar:0.3:compile
[INFO] | | +- org.apache.kafka:kafka-clients:jar:0.8.2.1:compile
[INFO] | | | +- net.jpountz.lz4:lz4:jar:1.2.0:compile
[INFO] | | | \- org.xerial.snappy:snappy-java:jar:1.1.1.6:compile
[INFO] | | \- io.reactivex:rxjava-math:jar:1.0.0:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-actuator:jar:1.3.1.RELEASE:compile
[INFO] | | \- org.springframework.boot:spring-boot-actuator:jar:1.3.1.RELEASE:compile
[INFO] | +- org.springframework.integration:spring-integration-jmx:jar:4.2.4.RELEASE:compile
[INFO] | | \- org.springframework.integration:spring-integration-core:jar:4.2.4.RELEASE:compile
[INFO] | \- org.springframework.cloud:spring-cloud-stream:jar:1.0.0.M3:compile
[INFO] | +- org.springframework:spring-messaging:jar:4.2.4.RELEASE:compile
[INFO] | +- org.springframework.cloud:spring-cloud-stream-tuple:jar:1.0.0.M3:compile
[INFO] | \- org.springframework.retry:spring-retry:jar:1.1.2.RELEASE:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-zipkin:jar:1.0.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-starter-sleuth:jar:1.0.0.M4:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-aop:jar:1.3.1.RELEASE:compile
[INFO] | | | \- org.aspectj:aspectjweaver:jar:1.8.7:compile
[INFO] | | \- org.springframework.cloud:spring-cloud-sleuth-core:jar:1.0.0.M4:compile
[INFO] | \- org.springframework.cloud:spring-cloud-sleuth-zipkin:jar:1.0.0.M4:compile
[INFO] | \- com.github.kristofa:brave-spancollector-scribe:jar:3.2.0:compile
[INFO] | \- com.github.kristofa:brave-core:jar:3.2.0:compile
[INFO] | \- org.apache.thrift:libthrift:jar:0.9.0:compile
[INFO] +- org.springframework.boot:spring-boot-starter-test:jar:1.3.1.RELEASE:test
[INFO] | +- junit:junit:jar:4.12:compile
[INFO] | +- org.mockito:mockito-core:jar:1.10.19:test
[INFO] | | \- org.objenesis:objenesis:jar:2.1:compile
[INFO] | +- org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO] | +- org.hamcrest:hamcrest-library:jar:1.3:test
[INFO] | +- org.springframework:spring-core:jar:4.2.4.RELEASE:compile
[INFO] | \- org.springframework:spring-test:jar:4.2.4.RELEASE:test
[INFO] \- org.apache.commons:commons-lang3:jar:3.3.2:compile
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building giftly-search-service 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ giftly-search-service ---
[INFO] org.koko:giftly-search-service:jar:0.0.1-SNAPSHOT
[INFO] +- org.springframework.cloud:spring-cloud-starter-config:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-starter:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework.cloud:spring-cloud-context:jar:1.1.0.M4:compile
[INFO] | | | \- org.springframework.security:spring-security-crypto:jar:4.0.3.RELEASE:compile
[INFO] | | \- org.springframework.cloud:spring-cloud-commons:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-config-client:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework:spring-web:jar:4.2.4.RELEASE:compile
[INFO] | | | +- org.springframework:spring-aop:jar:4.2.4.RELEASE:compile
[INFO] | | | \- org.springframework:spring-beans:jar:4.2.4.RELEASE:compile
[INFO] | | \- com.fasterxml.jackson.core:jackson-annotations:jar:2.6.4:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-databind:jar:2.6.4:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-core:jar:2.6.4:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-eureka:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-web:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-tomcat:jar:1.3.1.RELEASE:compile
[INFO] | | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:8.0.30:compile
[INFO] | | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:8.0.30:compile
[INFO] | | | +- org.apache.tomcat.embed:tomcat-embed-logging-juli:jar:8.0.30:compile
[INFO] | | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.0.30:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-validation:jar:1.3.1.RELEASE:compile
[INFO] | | \- org.springframework:spring-webmvc:jar:4.2.4.RELEASE:compile
[INFO] | | \- org.springframework:spring-expression:jar:4.2.4.RELEASE:compile
[INFO] | +- org.springframework.cloud:spring-cloud-netflix-core:jar:1.1.0.M4:compile
[INFO] | | \- org.springframework.boot:spring-boot:jar:1.3.1.RELEASE:compile
[INFO] | +- com.netflix.eureka:eureka-client:jar:1.3.4:compile
[INFO] | | +- org.codehaus.jettison:jettison:jar:1.3.7:runtime
[INFO] | | | \- stax:stax-api:jar:1.0.1:runtime
[INFO] | | +- com.netflix.netflix-commons:netflix-eventbus:jar:0.1.2:runtime
[INFO] | | +- com.netflix.archaius:archaius-core:jar:0.7.1:runtime
[INFO] | | | +- commons-configuration:commons-configuration:jar:1.8:runtime
[INFO] | | | \- com.google.guava:guava:jar:18.0:runtime
[INFO] | | +- javax.ws.rs:jsr311-api:jar:1.1.1:runtime
[INFO] | | +- com.netflix.servo:servo-core:jar:0.10.0:runtime
[INFO] | | | \- com.netflix.servo:servo-internal:jar:0.10.0:runtime
[INFO] | | +- com.sun.jersey:jersey-core:jar:1.19:runtime
[INFO] | | +- com.sun.jersey:jersey-client:jar:1.19:runtime
[INFO] | | +- com.sun.jersey.contribs:jersey-apache-client4:jar:1.19:runtime
[INFO] | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:runtime
[INFO] | | | +- org.apache.httpcomponents:httpcore:jar:4.4.4:runtime
[INFO] | | | \- commons-codec:commons-codec:jar:1.9:runtime
[INFO] | | +- com.google.inject:guice:jar:4.0:runtime
[INFO] | | | +- javax.inject:javax.inject:jar:1:runtime
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:compile
[INFO] | | \- com.netflix.governator:governator-annotations:jar:1.10.4:runtime
[INFO] | +- org.springframework.cloud:spring-cloud-starter-ribbon:jar:1.1.0.M4:compile
[INFO] | | +- com.netflix.ribbon:ribbon:jar:2.1.0:compile
[INFO] | | | +- com.netflix.ribbon:ribbon-transport:jar:2.1.0:runtime
[INFO] | | | | +- io.reactivex:rxnetty-contexts:jar:0.4.9:runtime
[INFO] | | | | \- io.reactivex:rxnetty-servo:jar:0.4.9:runtime
[INFO] | | | +- com.netflix.hystrix:hystrix-core:jar:1.4.21:runtime
[INFO] | | | \- io.reactivex:rxnetty:jar:0.4.9:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-core:jar:2.1.0:compile
[INFO] | | +- com.netflix.ribbon:ribbon-httpclient:jar:2.1.0:compile
[INFO] | | | \- com.netflix.netflix-commons:netflix-commons-util:jar:0.1.1:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-loadbalancer:jar:2.1.0:compile
[INFO] | | | \- com.netflix.netflix-commons:netflix-statistics:jar:0.1.1:runtime
[INFO] | | \- io.reactivex:rxjava:jar:1.0.14:compile
[INFO] | +- com.netflix.ribbon:ribbon-eureka:jar:2.1.0:compile
[INFO] | | +- com.netflix.eureka:eureka2-client-shaded:jar:2.0.0-rc.2:runtime
[INFO] | | | +- io.netty:netty-codec-http:jar:4.0.25.Final:runtime
[INFO] | | | | +- io.netty:netty-codec:jar:4.0.25.Final:runtime
[INFO] | | | | \- io.netty:netty-handler:jar:4.0.25.Final:runtime
[INFO] | | | \- io.netty:netty-transport-native-epoll:jar:4.0.25.Final:runtime
[INFO] | | | +- io.netty:netty-common:jar:4.0.25.Final:runtime
[INFO] | | | +- io.netty:netty-buffer:jar:4.0.25.Final:runtime
[INFO] | | | \- io.netty:netty-transport:jar:4.0.25.Final:runtime
[INFO] | | \- org.slf4j:slf4j-api:jar:1.7.13:compile
[INFO] | \- com.thoughtworks.xstream:xstream:jar:1.4.2:compile
[INFO] | +- xmlpull:xmlpull:jar:1.1.3.1:compile
[INFO] | \- xpp3:xpp3_min:jar:1.1.4c:compile
[INFO] +- org.springframework.boot:spring-boot-starter-data-elasticsearch:jar:1.3.1.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:1.3.1.RELEASE:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.1.3:compile
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.1.3:compile
[INFO] | | | +- org.slf4j:jul-to-slf4j:jar:1.7.13:compile
[INFO] | | | \- org.slf4j:log4j-over-slf4j:jar:1.7.13:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.16:runtime
[INFO] | \- org.springframework.data:spring-data-elasticsearch:jar:1.3.2.RELEASE:compile
[INFO] | +- org.springframework:spring-context:jar:4.2.4.RELEASE:compile
[INFO] | +- org.springframework:spring-tx:jar:4.2.4.RELEASE:compile
[INFO] | +- org.springframework.data:spring-data-commons:jar:1.11.2.RELEASE:compile
[INFO] | +- commons-lang:commons-lang:jar:2.6:compile
[INFO] | +- commons-collections:commons-collections:jar:3.2.2:compile
[INFO] | +- joda-time:joda-time:jar:2.8.2:compile
[INFO] | +- org.elasticsearch:elasticsearch:jar:1.5.2:compile
[INFO] | | +- org.apache.lucene:lucene-core:jar:4.10.4:compile
[INFO] | | +- org.apache.lucene:lucene-analyzers-common:jar:4.10.4:compile
[INFO] | | +- org.apache.lucene:lucene-queries:jar:4.10.4:compile
[INFO] | | +- org.apache.lucene:lucene-memory:jar:4.10.4:compile
[INFO] | | +- org.apache.lucene:lucene-highlighter:jar:4.10.4:compile
[INFO] | | +- org.apache.lucene:lucene-queryparser:jar:4.10.4:compile
[INFO] | | +- org.apache.lucene:lucene-sandbox:jar:4.10.4:compile
[INFO] | | +- org.apache.lucene:lucene-suggest:jar:4.10.4:compile
[INFO] | | +- org.apache.lucene:lucene-misc:jar:4.10.4:compile
[INFO] | | +- org.apache.lucene:lucene-join:jar:4.10.4:compile
[INFO] | | +- org.apache.lucene:lucene-grouping:jar:4.10.4:compile
[INFO] | | +- org.apache.lucene:lucene-spatial:jar:4.10.4:compile
[INFO] | | | \- com.spatial4j:spatial4j:jar:0.4.1:compile
[INFO] | | +- org.antlr:antlr-runtime:jar:3.5:compile
[INFO] | | +- org.ow2.asm:asm:jar:4.1:compile
[INFO] | | \- org.ow2.asm:asm-commons:jar:4.1:compile
[INFO] | \- org.slf4j:jcl-over-slf4j:jar:1.7.13:compile
[INFO] \- org.springframework.boot:spring-boot-starter-test:jar:1.3.1.RELEASE:test
[INFO] +- junit:junit:jar:4.12:test
[INFO] +- org.mockito:mockito-core:jar:1.10.19:test
[INFO] | \- org.objenesis:objenesis:jar:2.1:test
[INFO] +- org.hamcrest:hamcrest-core:jar:1.3:test
[INFO] +- org.hamcrest:hamcrest-library:jar:1.3:test
[INFO] +- org.springframework:spring-core:jar:4.2.4.RELEASE:compile
[INFO] \- org.springframework:spring-test:jar:4.2.4.RELEASE:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building giftly-social-connect 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ giftly-social-connect ---
[INFO] org.koko:giftly-social-connect:jar:0.0.1-SNAPSHOT
[INFO] +- org.springframework.boot:spring-boot-starter-actuator:jar:1.3.1.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:1.3.1.RELEASE:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.1.3:compile
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.1.3:compile
[INFO] | | | +- org.slf4j:jcl-over-slf4j:jar:1.7.13:compile
[INFO] | | | +- org.slf4j:jul-to-slf4j:jar:1.7.13:compile
[INFO] | | | \- org.slf4j:log4j-over-slf4j:jar:1.7.13:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.16:runtime
[INFO] | \- org.springframework.boot:spring-boot-actuator:jar:1.3.1.RELEASE:compile
[INFO] | \- org.springframework:spring-context:jar:4.2.4.RELEASE:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-config:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-starter:jar:1.1.0.M4:compile
[INFO] | | +- org.springframework.cloud:spring-cloud-context:jar:1.1.0.M4:compile
[INFO] | | \- org.springframework.cloud:spring-cloud-commons:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-config-client:jar:1.1.0.M4:compile
[INFO] | | \- com.fasterxml.jackson.core:jackson-annotations:jar:2.6.4:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-databind:jar:2.6.4:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-core:jar:2.6.4:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter-eureka:jar:1.1.0.M4:compile
[INFO] | +- org.springframework.cloud:spring-cloud-netflix-core:jar:1.1.0.M4:compile
[INFO] | +- com.netflix.eureka:eureka-client:jar:1.3.4:compile
[INFO] | | +- org.codehaus.jettison:jettison:jar:1.3.7:runtime
[INFO] | | | \- stax:stax-api:jar:1.0.1:runtime
[INFO] | | +- com.netflix.netflix-commons:netflix-eventbus:jar:0.1.2:runtime
[INFO] | | +- com.netflix.archaius:archaius-core:jar:0.7.1:runtime
[INFO] | | | +- commons-configuration:commons-configuration:jar:1.8:runtime
[INFO] | | | \- com.google.guava:guava:jar:18.0:runtime
[INFO] | | +- javax.ws.rs:jsr311-api:jar:1.1.1:runtime
[INFO] | | +- com.netflix.servo:servo-core:jar:0.10.0:runtime
[INFO] | | | \- com.netflix.servo:servo-internal:jar:0.10.0:runtime
[INFO] | | +- com.sun.jersey:jersey-core:jar:1.19:runtime
[INFO] | | +- com.sun.jersey:jersey-client:jar:1.19:runtime
[INFO] | | +- com.sun.jersey.contribs:jersey-apache-client4:jar:1.19:runtime
[INFO] | | +- org.apache.httpcomponents:httpclient:jar:4.5.1:runtime
[INFO] | | | +- org.apache.httpcomponents:httpcore:jar:4.4.4:runtime
[INFO] | | | \- commons-codec:commons-codec:jar:1.9:runtime
[INFO] | | +- com.google.inject:guice:jar:4.0:runtime
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:compile
[INFO] | | \- com.netflix.governator:governator-annotations:jar:1.10.4:runtime
[INFO] | +- org.springframework.cloud:spring-cloud-starter-ribbon:jar:1.1.0.M4:compile
[INFO] | | +- com.netflix.ribbon:ribbon:jar:2.1.0:compile
[INFO] | | | +- com.netflix.ribbon:ribbon-transport:jar:2.1.0:runtime
[INFO] | | | | +- io.reactivex:rxnetty-contexts:jar:0.4.9:runtime
[INFO] | | | | \- io.reactivex:rxnetty-servo:jar:0.4.9:runtime
[INFO] | | | +- com.netflix.hystrix:hystrix-core:jar:1.4.21:runtime
[INFO] | | | \- io.reactivex:rxnetty:jar:0.4.9:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-core:jar:2.1.0:compile
[INFO] | | | \- commons-lang:commons-lang:jar:2.6:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-httpclient:jar:2.1.0:compile
[INFO] | | | +- commons-collections:commons-collections:jar:3.2.2:runtime
[INFO] | | | \- com.netflix.netflix-commons:netflix-commons-util:jar:0.1.1:runtime
[INFO] | | +- com.netflix.ribbon:ribbon-loadbalancer:jar:2.1.0:compile
[INFO] | | | \- com.netflix.netflix-commons:netflix-statistics:jar:0.1.1:runtime
[INFO] | | \- io.reactivex:rxjava:jar:1.0.14:compile
[INFO] | +- com.netflix.ribbon:ribbon-eureka:jar:2.1.0:compile
[INFO] | | +- com.netflix.eureka:eureka2-client-shaded:jar:2.0.0-rc.2:runtime
[INFO] | | | +- io.netty:netty-codec-http:jar:4.0.25.Final:runtime
[INFO] | | | | +- io.netty:netty-codec:jar:4.0.25.Final:runtime
[INFO] | | | | \- io.netty:netty-handler:jar:4.0.25.Final:runtime
[INFO] | | | \- io.netty:netty-transport-native-epoll:jar:4.0.25.Final:runtime
[INFO] | | | +- io.netty:netty-common:jar:4.0.25.Final:runtime
[INFO] | | | +- io.netty:netty-buffer:jar:4.0.25.Final:runtime
[INFO] | | | \- io.netty:netty-transport:jar:4.0.25.Final:runtime
[INFO] | | \- org.slf4j:slf4j-api:jar:1.7.13:compile
[INFO] | \- com.thoughtworks.xstream:xstream:jar:1.4.2:compile
[INFO] | +- xmlpull:xmlpull:jar:1.1.3.1:compile
[INFO] | \- xpp3:xpp3_min:jar:1.1.4c:compile
[INFO] +- org.springframework.boot:spring-boot-starter-social-facebook:jar:1.3.1.RELEASE:compile
[INFO] | +- org.springframework.social:spring-social-config:jar:1.1.4.RELEASE:compile
[INFO] | +- org.springframework.social:spring-social-core:jar:1.1.4.RELEASE:compile
[INFO] | +- org.springframework.social:spring-social-web:jar:1.1.4.RELEASE:compile
[INFO] | | \- javax.inject:javax.inject:jar:1:compile
[INFO] | \- org.springframework.social:spring-social-facebook:jar:2.0.3.RELEASE:compile
[INFO] +- org.springframework.boot:spring-boot-starter-social-twitter:jar:1.3.1.RELEASE:compile
[INFO] | \- org.springframework.social:spring-social-twitter:jar:1.1.2.RELEASE:compile
[INFO] | \- org.springframework.security:spring-security-crypto:jar:4.0.3.RELEASE:compile
[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:1.3.1.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:1.3.1.RELEASE:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:8.0.30:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:8.0.30:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-logging-juli:jar:8.0.30:compile
[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.0.30:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-validation:jar:1.3.1.RELEASE:compile
[INFO] | | \- org.hibernate:hibernate-validator:jar:5.2.2.Final:compile
[INFO] | | +- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] | | +- org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile
[INFO] | | \- com.fasterxml:classmate:jar:1.1.0:compile
[INFO] | +- org.springframework:spring-web:jar:4.2.4.RELEASE:compile
[INFO] | | +- org.springframework:spring-aop:jar:4.2.4.RELEASE:compile
[INFO] | | \- org.springframework:spring-beans:jar:4.2.4.RELEASE:compile
[INFO] | \- org.springframework:spring-webmvc:jar:4.2.4.RELEASE:compile
[INFO] | \- org.springframework:spring-expression:jar:4.2.4.RELEASE:compile
[INFO] \- org.springframework.boot:spring-boot-starter-test:jar:1.3.1.RELEASE:test
[INFO] +- junit:junit:jar:4.12:test
[INFO] +- org.mockito:mockito-core:jar:1.10.19:test
[INFO] | \- org.objenesis:objenesis:jar:2.1:test
[INFO] +- org.hamcrest:hamcrest-core:jar:1.3:test
[INFO] +- org.hamcrest:hamcrest-library:jar:1.3:test
[INFO] +- org.springframework:spring-core:jar:4.2.4.RELEASE:compile
[INFO] \- org.springframework:spring-test:jar:4.2.4.RELEASE:test
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building giftly-recommendation-service 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------