forked from codecentric/spring-boot-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree.txt
1806 lines (1803 loc) · 127 KB
/
tree.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] Spring Boot Admin [pom]
[INFO] Spring Boot Admin Dependencies [pom]
[INFO] Spring Boot Admin Build [pom]
[INFO] Spring Boot Admin Server [jar]
[INFO] Spring Boot Admin Server UI [jar]
[INFO] Spring Boot Admin Client [jar]
[INFO] Spring Boot Admin Docs [pom]
[INFO] Spring Boot Admin Server Cloud [jar]
[INFO] Spring Boot Admin Server Starter [jar]
[INFO] Spring Boot Admin Client Starter [jar]
[INFO] Spring Boot Admin Samples [pom]
[INFO] Spring Boot Admin Server custom UI [jar]
[INFO] Spring Boot Admin Sample Servlet [jar]
[INFO] Spring Boot Admin Sample Reactive [jar]
[INFO] Spring Boot Admin Sample War [war]
[INFO] Spring Boot Admin Sample Hazelcast [jar]
[INFO] Spring Boot Admin Sample Eureka [jar]
[INFO] Spring Boot Admin Sample Consul [jar]
[INFO] Spring Boot Admin Sample Zookeeper [jar]
[INFO]
[INFO] ------------------< de.codecentric:spring-boot-admin >------------------
[INFO] Building Spring Boot Admin 2.5.5-SNAPSHOT [1/19]
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin ---
[INFO] de.codecentric:spring-boot-admin:pom:2.5.5-SNAPSHOT
[INFO]
[INFO] -----------< de.codecentric:spring-boot-admin-dependencies >------------
[INFO] Building Spring Boot Admin Dependencies 2.5.5-SNAPSHOT [2/19]
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-dependencies ---
[INFO] de.codecentric:spring-boot-admin-dependencies:pom:2.5.5-SNAPSHOT
[INFO]
[INFO] ---------------< de.codecentric:spring-boot-admin-build >---------------
[INFO] Building Spring Boot Admin Build 2.5.5-SNAPSHOT [3/19]
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-build ---
[INFO] de.codecentric:spring-boot-admin-build:pom:2.5.5-SNAPSHOT
[INFO]
[INFO] --------------< de.codecentric:spring-boot-admin-server >---------------
[INFO] Building Spring Boot Admin Server 2.5.5-SNAPSHOT [4/19]
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from spring-release: https://repo.spring.io/release/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.pom
Downloading from spring-milestone: https://repo.spring.io/milestone/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.pom
Downloading from spring-snapshot: https://repo.spring.io/snapshot/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.pom
Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.pom
Progress (1): 2.7/13 kBProgress (1): 5.5/13 kBProgress (1): 8.2/13 kBProgress (1): 11/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.pom (13 kB at 52 kB/s)
Downloading from spring-release: https://repo.spring.io/release/ch/qos/logback/logback-parent/1.2.8/logback-parent-1.2.8.pom
Downloading from spring-milestone: https://repo.spring.io/milestone/ch/qos/logback/logback-parent/1.2.8/logback-parent-1.2.8.pom
Downloading from spring-snapshot: https://repo.spring.io/snapshot/ch/qos/logback/logback-parent/1.2.8/logback-parent-1.2.8.pom
Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.2.8/logback-parent-1.2.8.pom
Progress (1): 2.7/18 kBProgress (1): 5.5/18 kBProgress (1): 8.2/18 kBProgress (1): 11/18 kB Progress (1): 14/18 kBProgress (1): 16/18 kBProgress (1): 18 kB Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.2.8/logback-parent-1.2.8.pom (18 kB at 225 kB/s)
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-server ---
Downloading from spring-release: https://repo.spring.io/release/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.jar
Downloading from spring-milestone: https://repo.spring.io/milestone/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.jar
Downloading from spring-snapshot: https://repo.spring.io/snapshot/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.jar
Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.jar
Progress (1): 2.7/285 kBProgress (1): 5.5/285 kBProgress (1): 8.2/285 kBProgress (1): 11/285 kB Progress (1): 14/285 kBProgress (1): 16/285 kBProgress (1): 19/285 kBProgress (1): 22/285 kBProgress (1): 25/285 kBProgress (1): 27/285 kBProgress (1): 30/285 kBProgress (1): 33/285 kBProgress (1): 37/285 kBProgress (1): 41/285 kBProgress (1): 45/285 kBProgress (1): 49/285 kBProgress (1): 53/285 kBProgress (1): 57/285 kBProgress (1): 62/285 kBProgress (1): 66/285 kBProgress (1): 70/285 kBProgress (1): 74/285 kBProgress (1): 78/285 kBProgress (1): 82/285 kBProgress (1): 86/285 kBProgress (1): 90/285 kBProgress (1): 94/285 kBProgress (1): 98/285 kBProgress (1): 103/285 kBProgress (1): 107/285 kBProgress (1): 111/285 kBProgress (1): 115/285 kBProgress (1): 119/285 kBProgress (1): 123/285 kBProgress (1): 127/285 kBProgress (1): 131/285 kBProgress (1): 135/285 kBProgress (1): 139/285 kBProgress (1): 143/285 kBProgress (1): 148/285 kBProgress (1): 152/285 kBProgress (1): 156/285 kBProgress (1): 160/285 kBProgress (1): 164/285 kBProgress (1): 168/285 kBProgress (1): 172/285 kBProgress (1): 176/285 kBProgress (1): 180/285 kBProgress (1): 184/285 kBProgress (1): 189/285 kBProgress (1): 193/285 kBProgress (1): 197/285 kBProgress (1): 201/285 kBProgress (1): 205/285 kBProgress (1): 209/285 kBProgress (1): 213/285 kBProgress (1): 217/285 kBProgress (1): 221/285 kBProgress (1): 225/285 kBProgress (1): 230/285 kBProgress (1): 234/285 kBProgress (1): 238/285 kBProgress (1): 242/285 kBProgress (1): 246/285 kBProgress (1): 250/285 kBProgress (1): 254/285 kBProgress (1): 258/285 kBProgress (1): 262/285 kBProgress (1): 266/285 kBProgress (1): 270/285 kBProgress (1): 275/285 kBProgress (1): 279/285 kBProgress (1): 283/285 kBProgress (1): 285 kB Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.jar (285 kB at 1.8 MB/s)
[INFO] de.codecentric:spring-boot-admin-server:jar:2.5.5-SNAPSHOT
[INFO] +- org.springframework.boot:spring-boot-starter:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot:jar:2.5.6:compile
[INFO] | | \- org.springframework:spring-context:jar:5.3.12:compile
[INFO] | +- org.springframework.boot:spring-boot-autoconfigure:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-logging:jar:2.5.6:compile
[INFO] | | +- ch.qos.logback:logback-classic:jar:1.2.8:compile
[INFO] | | | \- ch.qos.logback:logback-core:jar:1.2.6:compile
[INFO] | | +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.14.1:compile
[INFO] | | | \- org.apache.logging.log4j:log4j-api:jar:2.14.1:compile
[INFO] | | \- org.slf4j:jul-to-slf4j:jar:1.7.32:compile
[INFO] | +- jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile
[INFO] | +- org.springframework:spring-core:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-jcl:jar:5.3.12:compile
[INFO] | \- org.yaml:snakeyaml:jar:1.28:compile
[INFO] +- org.springframework.boot:spring-boot-starter-webflux:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-json:jar:2.5.6:compile
[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.12.5:compile
[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.12.5:compile
[INFO] | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.12.5:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-reactor-netty:jar:2.5.6:compile
[INFO] | | \- io.projectreactor.netty:reactor-netty-http:jar:1.0.12:compile
[INFO] | | +- io.netty:netty-codec-http:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-common:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-buffer:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-transport:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-codec:jar:4.1.69.Final:compile
[INFO] | | | \- io.netty:netty-handler:jar:4.1.69.Final:compile
[INFO] | | +- io.netty:netty-codec-http2:jar:4.1.69.Final:compile
[INFO] | | +- io.netty:netty-resolver-dns:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-resolver:jar:4.1.69.Final:compile
[INFO] | | | \- io.netty:netty-codec-dns:jar:4.1.69.Final:compile
[INFO] | | +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.69.Final:compile
[INFO] | | | \- io.netty:netty-transport-native-unix-common:jar:4.1.69.Final:compile
[INFO] | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.69.Final:compile
[INFO] | | \- io.projectreactor.netty:reactor-netty-core:jar:1.0.12:compile
[INFO] | | \- io.netty:netty-handler-proxy:jar:4.1.69.Final:compile
[INFO] | | \- io.netty:netty-codec-socks:jar:4.1.69.Final:compile
[INFO] | +- org.springframework:spring-web:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-beans:jar:5.3.12:compile
[INFO] | \- org.springframework:spring-webflux:jar:5.3.12:compile
[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:2.5.6:compile (optional)
[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:2.5.6:compile (optional)
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.54:compile (optional)
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:9.0.54:compile (optional)
[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:9.0.54:compile (optional)
[INFO] | \- org.springframework:spring-webmvc:jar:5.3.12:compile (optional)
[INFO] | \- org.springframework:spring-expression:jar:5.3.12:compile
[INFO] +- org.springframework.boot:spring-boot-starter-thymeleaf:jar:2.5.6:compile
[INFO] | +- org.thymeleaf:thymeleaf-spring5:jar:3.0.12.RELEASE:compile
[INFO] | | \- org.thymeleaf:thymeleaf:jar:3.0.12.RELEASE:compile
[INFO] | | +- org.attoparser:attoparser:jar:2.0.5.RELEASE:compile
[INFO] | | \- org.unbescape:unbescape:jar:1.1.6.RELEASE:compile
[INFO] | \- org.thymeleaf.extras:thymeleaf-extras-java8time:jar:3.0.4.RELEASE:compile
[INFO] +- org.springframework.boot:spring-boot-starter-actuator:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:2.5.6:compile
[INFO] | | \- org.springframework.boot:spring-boot-actuator:jar:2.5.6:compile
[INFO] | \- io.micrometer:micrometer-core:jar:1.7.5:compile
[INFO] | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:compile
[INFO] | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime
[INFO] +- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] | +- org.apache.httpcomponents:httpcore:jar:4.4.14:compile
[INFO] | \- commons-codec:commons-codec:jar:1.15:compile
[INFO] +- io.projectreactor.addons:reactor-extra:jar:3.4.5:compile
[INFO] | \- io.projectreactor:reactor-core:jar:3.4.11:compile
[INFO] | \- org.reactivestreams:reactive-streams:jar:1.0.3:compile
[INFO] +- org.projectlombok:lombok:jar:1.18.22:compile (optional)
[INFO] +- com.google.code.findbugs:jsr305:jar:3.0.2:provided
[INFO] +- org.springframework.boot:spring-boot-starter-mail:jar:2.5.6:compile (optional)
[INFO] | +- org.springframework:spring-context-support:jar:5.3.12:compile (optional)
[INFO] | \- com.sun.mail:jakarta.mail:jar:1.6.7:compile (optional)
[INFO] | \- com.sun.activation:jakarta.activation:jar:1.2.2:compile (optional)
[INFO] +- com.hazelcast:hazelcast:jar:4.1.5:compile (optional)
[INFO] +- org.springframework.boot:spring-boot-autoconfigure-processor:jar:2.5.6:compile (optional)
[INFO] +- org.springframework.boot:spring-boot-configuration-processor:jar:2.5.6:compile (optional)
[INFO] +- org.springframework.boot:spring-boot-starter-test:jar:2.5.6:test
[INFO] | +- org.springframework.boot:spring-boot-test:jar:2.5.6:test
[INFO] | +- org.springframework.boot:spring-boot-test-autoconfigure:jar:2.5.6:test
[INFO] | +- com.jayway.jsonpath:json-path:jar:2.5.0:test
[INFO] | +- jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:test
[INFO] | | \- jakarta.activation:jakarta.activation-api:jar:1.2.2:test
[INFO] | +- org.assertj:assertj-core:jar:3.19.0:test
[INFO] | +- org.hamcrest:hamcrest:jar:2.2:test
[INFO] | +- org.mockito:mockito-core:jar:3.9.0:test
[INFO] | | +- net.bytebuddy:byte-buddy:jar:1.10.22:test
[INFO] | | +- net.bytebuddy:byte-buddy-agent:jar:1.10.22:test
[INFO] | | \- org.objenesis:objenesis:jar:3.2:test
[INFO] | +- org.mockito:mockito-junit-jupiter:jar:3.9.0:test
[INFO] | +- org.skyscreamer:jsonassert:jar:1.5.0:test
[INFO] | | \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
[INFO] | +- org.springframework:spring-test:jar:5.3.12:test
[INFO] | \- org.xmlunit:xmlunit-core:jar:2.8.3:test
[INFO] +- org.junit.jupiter:junit-jupiter:jar:5.7.2:test
[INFO] | +- org.junit.jupiter:junit-jupiter-api:jar:5.7.2:test
[INFO] | | +- org.apiguardian:apiguardian-api:jar:1.1.0:test
[INFO] | | +- org.opentest4j:opentest4j:jar:1.2.0:test
[INFO] | | \- org.junit.platform:junit-platform-commons:jar:1.7.2:test
[INFO] | +- org.junit.jupiter:junit-jupiter-params:jar:5.7.2:test
[INFO] | \- org.junit.jupiter:junit-jupiter-engine:jar:5.7.2:test
[INFO] | \- org.junit.platform:junit-platform-engine:jar:1.7.2:test
[INFO] +- org.springframework.boot:spring-boot-starter-security:jar:2.5.6:test
[INFO] | +- org.springframework:spring-aop:jar:5.3.12:compile
[INFO] | +- org.springframework.security:spring-security-config:jar:5.5.3:test
[INFO] | | \- org.springframework.security:spring-security-core:jar:5.5.3:test
[INFO] | | \- org.springframework.security:spring-security-crypto:jar:5.5.3:test
[INFO] | \- org.springframework.security:spring-security-web:jar:5.5.3:test
[INFO] +- com.fasterxml.jackson.datatype:jackson-datatype-json-org:jar:2.12.5:test
[INFO] | +- org.json:json:jar:20190722:test
[INFO] | +- com.fasterxml.jackson.core:jackson-core:jar:2.12.5:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-databind:jar:2.12.5:compile
[INFO] +- io.projectreactor:reactor-test:jar:3.4.11:test
[INFO] +- com.hazelcast:hazelcast:jar:tests:4.2.2:test
[INFO] +- com.github.tomakehurst:wiremock-jre8:jar:2.31.0:test
[INFO] | +- org.eclipse.jetty:jetty-server:jar:9.4.44.v20210927:test
[INFO] | | +- javax.servlet:javax.servlet-api:jar:4.0.1:test
[INFO] | | \- org.eclipse.jetty:jetty-http:jar:9.4.44.v20210927:test
[INFO] | +- org.eclipse.jetty:jetty-servlet:jar:9.4.44.v20210927:test
[INFO] | | +- org.eclipse.jetty:jetty-security:jar:9.4.44.v20210927:test
[INFO] | | \- org.eclipse.jetty:jetty-util-ajax:jar:9.4.44.v20210927:test
[INFO] | +- org.eclipse.jetty:jetty-servlets:jar:9.4.44.v20210927:test
[INFO] | | +- org.eclipse.jetty:jetty-continuation:jar:9.4.44.v20210927:test
[INFO] | | \- org.eclipse.jetty:jetty-util:jar:9.4.44.v20210927:test
[INFO] | +- org.eclipse.jetty:jetty-webapp:jar:9.4.44.v20210927:test
[INFO] | | \- org.eclipse.jetty:jetty-xml:jar:9.4.44.v20210927:test
[INFO] | +- org.eclipse.jetty:jetty-proxy:jar:9.4.44.v20210927:test
[INFO] | | \- org.eclipse.jetty:jetty-client:jar:9.4.44.v20210927:test
[INFO] | +- org.eclipse.jetty.http2:http2-server:jar:9.4.44.v20210927:test
[INFO] | | \- org.eclipse.jetty.http2:http2-common:jar:9.4.44.v20210927:test
[INFO] | | \- org.eclipse.jetty.http2:http2-hpack:jar:9.4.44.v20210927:test
[INFO] | +- org.eclipse.jetty:jetty-alpn-conscrypt-server:jar:9.4.44.v20210927:test
[INFO] | +- org.eclipse.jetty:jetty-alpn-conscrypt-client:jar:9.4.44.v20210927:test
[INFO] | | \- org.eclipse.jetty:jetty-alpn-client:jar:9.4.44.v20210927:test
[INFO] | +- org.conscrypt:conscrypt-openjdk-uber:jar:2.5.2:test
[INFO] | +- com.google.guava:guava:jar:30.1.1-jre:test
[INFO] | | +- com.google.guava:failureaccess:jar:1.0.1:test
[INFO] | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:test
[INFO] | | +- org.checkerframework:checker-qual:jar:3.8.0:test
[INFO] | | +- com.google.errorprone:error_prone_annotations:jar:2.5.1:test
[INFO] | | \- com.google.j2objc:j2objc-annotations:jar:1.3:test
[INFO] | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.12.5:compile
[INFO] | +- org.xmlunit:xmlunit-legacy:jar:2.8.3:test
[INFO] | +- org.xmlunit:xmlunit-placeholders:jar:2.8.3:test
[INFO] | +- net.javacrumbs.json-unit:json-unit-core:jar:2.28.0:test
[INFO] | | \- org.hamcrest:hamcrest-core:jar:2.2:test
[INFO] | +- net.minidev:json-smart:jar:2.4.7:test
[INFO] | | \- net.minidev:accessors-smart:jar:2.4.7:test
[INFO] | +- org.ow2.asm:asm:jar:9.2:test
[INFO] | +- org.slf4j:slf4j-api:jar:1.7.32:compile
[INFO] | +- net.sf.jopt-simple:jopt-simple:jar:5.0.4:test
[INFO] | +- org.apache.commons:commons-lang3:jar:3.12.0:test
[INFO] | +- com.github.jknack:handlebars:jar:4.2.0:test
[INFO] | +- com.github.jknack:handlebars-helpers:jar:4.2.0:test
[INFO] | +- commons-fileupload:commons-fileupload:jar:1.4:test
[INFO] | \- commons-io:commons-io:jar:2.11.0:test
[INFO] +- org.eclipse.jetty:jetty-alpn-server:jar:9.4.44.v20210927:test
[INFO] +- org.eclipse.jetty:jetty-alpn-openjdk8-server:jar:9.4.44.v20210927:test
[INFO] | \- org.eclipse.jetty:jetty-io:jar:9.4.44.v20210927:test
[INFO] +- org.awaitility:awaitility:jar:4.1.0:test
[INFO] +- org.testcontainers:testcontainers:jar:1.16.0:test
[INFO] | +- junit:junit:jar:4.13.2:test
[INFO] | +- org.apache.commons:commons-compress:jar:1.20:test
[INFO] | +- org.rnorth.duct-tape:duct-tape:jar:1.0.8:test
[INFO] | +- com.github.docker-java:docker-java-api:jar:3.2.11:test
[INFO] | \- com.github.docker-java:docker-java-transport-zerodep:jar:3.2.11:test
[INFO] | +- com.github.docker-java:docker-java-transport:jar:3.2.11:test
[INFO] | \- net.java.dev.jna:jna:jar:5.8.0:test
[INFO] \- org.testcontainers:junit-jupiter:jar:1.16.0:test
[INFO]
[INFO] -------------< de.codecentric:spring-boot-admin-server-ui >-------------
[INFO] Building Spring Boot Admin Server UI 2.5.5-SNAPSHOT [5/19]
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-server/2.5.5-SNAPSHOT/maven-metadata.xml
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-server-ui ---
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-server/2.5.5-SNAPSHOT/spring-boot-admin-server-2.5.5-SNAPSHOT.jar
[INFO] de.codecentric:spring-boot-admin-server-ui:jar:2.5.5-SNAPSHOT
[INFO] +- de.codecentric:spring-boot-admin-server:jar:2.5.5-SNAPSHOT:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:2.5.6:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.2.8:compile
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.2.6:compile
[INFO] | | | +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.14.1:compile
[INFO] | | | | \- org.apache.logging.log4j:log4j-api:jar:2.14.1:compile
[INFO] | | | \- org.slf4j:jul-to-slf4j:jar:1.7.32:compile
[INFO] | | +- jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.28:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-webflux:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-reactor-netty:jar:2.5.6:compile
[INFO] | | | \- io.projectreactor.netty:reactor-netty-http:jar:1.0.12:compile
[INFO] | | | +- io.netty:netty-codec-http:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-common:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-buffer:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-transport:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-codec:jar:4.1.69.Final:compile
[INFO] | | | | \- io.netty:netty-handler:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-codec-http2:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-resolver-dns:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-resolver:jar:4.1.69.Final:compile
[INFO] | | | | \- io.netty:netty-codec-dns:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.69.Final:compile
[INFO] | | | | \- io.netty:netty-transport-native-unix-common:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.69.Final:compile
[INFO] | | | \- io.projectreactor.netty:reactor-netty-core:jar:1.0.12:compile
[INFO] | | | \- io.netty:netty-handler-proxy:jar:4.1.69.Final:compile
[INFO] | | | \- io.netty:netty-codec-socks:jar:4.1.69.Final:compile
[INFO] | | \- org.springframework:spring-webflux:jar:5.3.12:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-thymeleaf:jar:2.5.6:compile
[INFO] | | +- org.thymeleaf:thymeleaf-spring5:jar:3.0.12.RELEASE:compile
[INFO] | | | \- org.thymeleaf:thymeleaf:jar:3.0.12.RELEASE:compile
[INFO] | | | +- org.attoparser:attoparser:jar:2.0.5.RELEASE:compile
[INFO] | | | \- org.unbescape:unbescape:jar:1.1.6.RELEASE:compile
[INFO] | | \- org.thymeleaf.extras:thymeleaf-extras-java8time:jar:3.0.4.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-actuator:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:2.5.6:compile
[INFO] | | | \- org.springframework.boot:spring-boot-actuator:jar:2.5.6:compile
[INFO] | | \- io.micrometer:micrometer-core:jar:1.7.5:compile
[INFO] | | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:compile
[INFO] | | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime
[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] | | +- org.apache.httpcomponents:httpcore:jar:4.4.14:compile
[INFO] | | \- commons-codec:commons-codec:jar:1.15:compile
[INFO] | \- io.projectreactor.addons:reactor-extra:jar:3.4.5:compile
[INFO] | \- io.projectreactor:reactor-core:jar:3.4.11:compile
[INFO] | \- org.reactivestreams:reactive-streams:jar:1.0.3:compile
[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:2.5.6:compile (optional)
[INFO] | +- org.springframework.boot:spring-boot-starter-json:jar:2.5.6:compile
[INFO] | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.12.5:compile
[INFO] | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.12.5:compile
[INFO] | | | \- com.fasterxml.jackson.core:jackson-core:jar:2.12.5:compile
[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.12.5:compile
[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.12.5:compile
[INFO] | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.12.5:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:2.5.6:compile (optional)
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.54:compile (optional)
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:9.0.54:compile (optional)
[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:9.0.54:compile (optional)
[INFO] | +- org.springframework:spring-web:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-beans:jar:5.3.12:compile
[INFO] | \- org.springframework:spring-webmvc:jar:5.3.12:compile (optional)
[INFO] | +- org.springframework:spring-context:jar:5.3.12:compile
[INFO] | \- org.springframework:spring-expression:jar:5.3.12:compile
[INFO] +- org.projectlombok:lombok:jar:1.18.22:compile (optional)
[INFO] +- org.springframework.boot:spring-boot-autoconfigure-processor:jar:2.5.6:compile (optional)
[INFO] +- org.springframework.boot:spring-boot-configuration-processor:jar:2.5.6:compile (optional)
[INFO] +- com.google.code.findbugs:jsr305:jar:3.0.2:provided
[INFO] +- org.springframework.boot:spring-boot-starter-test:jar:2.5.6:test
[INFO] | +- org.springframework.boot:spring-boot-test:jar:2.5.6:test
[INFO] | +- org.springframework.boot:spring-boot-test-autoconfigure:jar:2.5.6:test
[INFO] | +- com.jayway.jsonpath:json-path:jar:2.5.0:test
[INFO] | | +- net.minidev:json-smart:jar:2.4.7:test
[INFO] | | | \- net.minidev:accessors-smart:jar:2.4.7:test
[INFO] | | | \- org.ow2.asm:asm:jar:9.1:test
[INFO] | | \- org.slf4j:slf4j-api:jar:1.7.32:compile
[INFO] | +- jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:test
[INFO] | | \- jakarta.activation:jakarta.activation-api:jar:1.2.2:test
[INFO] | +- org.assertj:assertj-core:jar:3.19.0:test
[INFO] | +- org.hamcrest:hamcrest:jar:2.2:test
[INFO] | +- org.junit.jupiter:junit-jupiter:jar:5.7.2:test
[INFO] | | +- org.junit.jupiter:junit-jupiter-api:jar:5.7.2:test
[INFO] | | | +- org.apiguardian:apiguardian-api:jar:1.1.0:test
[INFO] | | | +- org.opentest4j:opentest4j:jar:1.2.0:test
[INFO] | | | \- org.junit.platform:junit-platform-commons:jar:1.7.2:test
[INFO] | | +- org.junit.jupiter:junit-jupiter-params:jar:5.7.2:test
[INFO] | | \- org.junit.jupiter:junit-jupiter-engine:jar:5.7.2:test
[INFO] | | \- org.junit.platform:junit-platform-engine:jar:1.7.2:test
[INFO] | +- org.mockito:mockito-core:jar:3.9.0:test
[INFO] | | +- net.bytebuddy:byte-buddy:jar:1.10.22:test
[INFO] | | +- net.bytebuddy:byte-buddy-agent:jar:1.10.22:test
[INFO] | | \- org.objenesis:objenesis:jar:3.2:test
[INFO] | +- org.mockito:mockito-junit-jupiter:jar:3.9.0:test
[INFO] | +- org.skyscreamer:jsonassert:jar:1.5.0:test
[INFO] | | \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
[INFO] | +- org.springframework:spring-core:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-jcl:jar:5.3.12:compile
[INFO] | +- org.springframework:spring-test:jar:5.3.12:test
[INFO] | \- org.xmlunit:xmlunit-core:jar:2.8.3:test
[INFO] \- org.springframework.boot:spring-boot-starter-security:jar:2.5.6:test
[INFO] +- org.springframework:spring-aop:jar:5.3.12:compile
[INFO] +- org.springframework.security:spring-security-config:jar:5.5.3:test
[INFO] | \- org.springframework.security:spring-security-core:jar:5.5.3:test
[INFO] | \- org.springframework.security:spring-security-crypto:jar:5.5.3:test
[INFO] \- org.springframework.security:spring-security-web:jar:5.5.3:test
[INFO]
[INFO] --------------< de.codecentric:spring-boot-admin-client >---------------
[INFO] Building Spring Boot Admin Client 2.5.5-SNAPSHOT [6/19]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-client ---
[INFO] de.codecentric:spring-boot-admin-client:jar:2.5.5-SNAPSHOT
[INFO] +- org.springframework.boot:spring-boot-starter:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot:jar:2.5.6:compile
[INFO] | | \- org.springframework:spring-context:jar:5.3.12:compile
[INFO] | +- org.springframework.boot:spring-boot-autoconfigure:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-logging:jar:2.5.6:compile
[INFO] | | +- ch.qos.logback:logback-classic:jar:1.2.8:compile
[INFO] | | | \- ch.qos.logback:logback-core:jar:1.2.6:compile
[INFO] | | +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.14.1:compile
[INFO] | | | \- org.apache.logging.log4j:log4j-api:jar:2.14.1:compile
[INFO] | | \- org.slf4j:jul-to-slf4j:jar:1.7.32:compile
[INFO] | +- jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile
[INFO] | +- org.springframework:spring-core:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-jcl:jar:5.3.12:compile
[INFO] | \- org.yaml:snakeyaml:jar:1.28:compile
[INFO] +- org.springframework.boot:spring-boot-starter-actuator:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-actuator:jar:2.5.6:compile
[INFO] | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.12.5:compile
[INFO] | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.12.5:compile
[INFO] | | | \- com.fasterxml.jackson.core:jackson-core:jar:2.12.5:compile
[INFO] | | \- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.12.5:compile
[INFO] | \- io.micrometer:micrometer-core:jar:1.7.5:compile
[INFO] | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:compile
[INFO] | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime
[INFO] +- org.springframework:spring-web:jar:5.3.12:compile
[INFO] | \- org.springframework:spring-beans:jar:5.3.12:compile
[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:2.5.6:compile (optional)
[INFO] | +- org.springframework.boot:spring-boot-starter-json:jar:2.5.6:compile
[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.12.5:compile
[INFO] | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.12.5:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:2.5.6:compile (optional)
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.54:compile (optional)
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:9.0.54:compile (optional)
[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:9.0.54:compile (optional)
[INFO] | \- org.springframework:spring-webmvc:jar:5.3.12:compile (optional)
[INFO] | +- org.springframework:spring-aop:jar:5.3.12:compile
[INFO] | \- org.springframework:spring-expression:jar:5.3.12:compile
[INFO] +- org.springframework.boot:spring-boot-autoconfigure-processor:jar:2.5.6:compile (optional)
[INFO] +- org.springframework.boot:spring-boot-configuration-processor:jar:2.5.6:compile (optional)
[INFO] +- org.springframework:spring-webflux:jar:5.3.12:compile (optional)
[INFO] | \- io.projectreactor:reactor-core:jar:3.4.11:compile
[INFO] | \- org.reactivestreams:reactive-streams:jar:1.0.3:compile
[INFO] +- org.projectlombok:lombok:jar:1.18.22:compile (optional)
[INFO] +- com.google.code.findbugs:jsr305:jar:3.0.2:provided
[INFO] +- org.springframework.boot:spring-boot-starter-test:jar:2.5.6:test
[INFO] | +- org.springframework.boot:spring-boot-test:jar:2.5.6:test
[INFO] | +- org.springframework.boot:spring-boot-test-autoconfigure:jar:2.5.6:test
[INFO] | +- com.jayway.jsonpath:json-path:jar:2.5.0:test
[INFO] | | +- net.minidev:json-smart:jar:2.4.7:test
[INFO] | | | \- net.minidev:accessors-smart:jar:2.4.7:test
[INFO] | | | \- org.ow2.asm:asm:jar:9.1:test
[INFO] | | \- org.slf4j:slf4j-api:jar:1.7.32:compile
[INFO] | +- jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:test
[INFO] | | \- jakarta.activation:jakarta.activation-api:jar:1.2.2:test
[INFO] | +- org.assertj:assertj-core:jar:3.19.0:test
[INFO] | +- org.hamcrest:hamcrest:jar:2.2:test
[INFO] | +- org.junit.jupiter:junit-jupiter:jar:5.7.2:test
[INFO] | | +- org.junit.jupiter:junit-jupiter-api:jar:5.7.2:test
[INFO] | | | +- org.apiguardian:apiguardian-api:jar:1.1.0:test
[INFO] | | | +- org.opentest4j:opentest4j:jar:1.2.0:test
[INFO] | | | \- org.junit.platform:junit-platform-commons:jar:1.7.2:test
[INFO] | | +- org.junit.jupiter:junit-jupiter-params:jar:5.7.2:test
[INFO] | | \- org.junit.jupiter:junit-jupiter-engine:jar:5.7.2:test
[INFO] | | \- org.junit.platform:junit-platform-engine:jar:1.7.2:test
[INFO] | +- org.mockito:mockito-core:jar:3.9.0:test
[INFO] | | +- net.bytebuddy:byte-buddy:jar:1.10.22:test
[INFO] | | +- net.bytebuddy:byte-buddy-agent:jar:1.10.22:test
[INFO] | | \- org.objenesis:objenesis:jar:3.2:test
[INFO] | +- org.mockito:mockito-junit-jupiter:jar:3.9.0:test
[INFO] | +- org.skyscreamer:jsonassert:jar:1.5.0:test
[INFO] | | \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
[INFO] | +- org.springframework:spring-test:jar:5.3.12:test
[INFO] | \- org.xmlunit:xmlunit-core:jar:2.8.3:test
[INFO] +- org.springframework.boot:spring-boot-starter-webflux:jar:2.5.6:test
[INFO] | \- org.springframework.boot:spring-boot-starter-reactor-netty:jar:2.5.6:test
[INFO] | \- io.projectreactor.netty:reactor-netty-http:jar:1.0.12:test
[INFO] | +- io.netty:netty-codec-http:jar:4.1.69.Final:test
[INFO] | | +- io.netty:netty-common:jar:4.1.69.Final:test
[INFO] | | +- io.netty:netty-buffer:jar:4.1.69.Final:test
[INFO] | | +- io.netty:netty-transport:jar:4.1.69.Final:test
[INFO] | | +- io.netty:netty-codec:jar:4.1.69.Final:test
[INFO] | | \- io.netty:netty-handler:jar:4.1.69.Final:test
[INFO] | +- io.netty:netty-codec-http2:jar:4.1.69.Final:test
[INFO] | +- io.netty:netty-resolver-dns:jar:4.1.69.Final:test
[INFO] | | +- io.netty:netty-resolver:jar:4.1.69.Final:test
[INFO] | | \- io.netty:netty-codec-dns:jar:4.1.69.Final:test
[INFO] | +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.69.Final:test
[INFO] | | \- io.netty:netty-transport-native-unix-common:jar:4.1.69.Final:test
[INFO] | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.69.Final:test
[INFO] | \- io.projectreactor.netty:reactor-netty-core:jar:1.0.12:test
[INFO] | \- io.netty:netty-handler-proxy:jar:4.1.69.Final:test
[INFO] | \- io.netty:netty-codec-socks:jar:4.1.69.Final:test
[INFO] \- com.github.tomakehurst:wiremock-jre8-standalone:jar:2.31.0:test
[INFO]
[INFO] ---------------< de.codecentric:spring-boot-admin-docs >----------------
[INFO] Building Spring Boot Admin Docs 2.5.5-SNAPSHOT [7/19]
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-docs ---
[INFO] de.codecentric:spring-boot-admin-docs:pom:2.5.5-SNAPSHOT
[INFO]
[INFO] -----------< de.codecentric:spring-boot-admin-server-cloud >------------
[INFO] Building Spring Boot Admin Server Cloud 2.5.5-SNAPSHOT [8/19]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-server-cloud ---
[INFO] de.codecentric:spring-boot-admin-server-cloud:jar:2.5.5-SNAPSHOT
[INFO] +- de.codecentric:spring-boot-admin-server:jar:2.5.5-SNAPSHOT:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:2.5.6:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.2.8:compile
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.2.6:compile
[INFO] | | | +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.14.1:compile
[INFO] | | | | \- org.apache.logging.log4j:log4j-api:jar:2.14.1:compile
[INFO] | | | \- org.slf4j:jul-to-slf4j:jar:1.7.32:compile
[INFO] | | +- jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.28:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-webflux:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-json:jar:2.5.6:compile
[INFO] | | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.12.5:compile
[INFO] | | | +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.12.5:compile
[INFO] | | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.12.5:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-reactor-netty:jar:2.5.6:compile
[INFO] | | | \- io.projectreactor.netty:reactor-netty-http:jar:1.0.12:compile
[INFO] | | | +- io.netty:netty-codec-http:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-common:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-buffer:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-transport:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-codec:jar:4.1.69.Final:compile
[INFO] | | | | \- io.netty:netty-handler:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-codec-http2:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-resolver-dns:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-resolver:jar:4.1.69.Final:compile
[INFO] | | | | \- io.netty:netty-codec-dns:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.69.Final:compile
[INFO] | | | | \- io.netty:netty-transport-native-unix-common:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.69.Final:compile
[INFO] | | | \- io.projectreactor.netty:reactor-netty-core:jar:1.0.12:compile
[INFO] | | | \- io.netty:netty-handler-proxy:jar:4.1.69.Final:compile
[INFO] | | | \- io.netty:netty-codec-socks:jar:4.1.69.Final:compile
[INFO] | | +- org.springframework:spring-web:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-webflux:jar:5.3.12:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-thymeleaf:jar:2.5.6:compile
[INFO] | | +- org.thymeleaf:thymeleaf-spring5:jar:3.0.12.RELEASE:compile
[INFO] | | | \- org.thymeleaf:thymeleaf:jar:3.0.12.RELEASE:compile
[INFO] | | | +- org.attoparser:attoparser:jar:2.0.5.RELEASE:compile
[INFO] | | | \- org.unbescape:unbescape:jar:1.1.6.RELEASE:compile
[INFO] | | \- org.thymeleaf.extras:thymeleaf-extras-java8time:jar:3.0.4.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-actuator:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:2.5.6:compile
[INFO] | | | \- org.springframework.boot:spring-boot-actuator:jar:2.5.6:compile
[INFO] | | \- io.micrometer:micrometer-core:jar:1.7.5:compile
[INFO] | | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:compile
[INFO] | | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime
[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] | | +- org.apache.httpcomponents:httpcore:jar:4.4.14:compile
[INFO] | | \- commons-codec:commons-codec:jar:1.15:compile
[INFO] | \- io.projectreactor.addons:reactor-extra:jar:3.4.5:compile
[INFO] +- org.springframework.cloud:spring-cloud-starter:jar:3.0.4:compile (optional)
[INFO] | +- org.springframework.cloud:spring-cloud-context:jar:3.0.4:compile (optional)
[INFO] | | \- org.springframework.security:spring-security-crypto:jar:5.5.3:compile
[INFO] | +- org.springframework.cloud:spring-cloud-commons:jar:3.0.4:compile (optional)
[INFO] | \- org.springframework.security:spring-security-rsa:jar:1.0.10.RELEASE:compile (optional)
[INFO] | \- org.bouncycastle:bcpkix-jdk15on:jar:1.68:compile (optional)
[INFO] | \- org.bouncycastle:bcprov-jdk15on:jar:1.68:compile (optional)
[INFO] +- org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:jar:3.0.4:compile (optional)
[INFO] | +- org.springframework.cloud:spring-cloud-netflix-eureka-client:jar:3.0.4:compile (optional)
[INFO] | +- com.netflix.eureka:eureka-client:jar:1.10.16:compile (optional)
[INFO] | | +- com.netflix.netflix-commons:netflix-eventbus:jar:0.3.0:compile (optional)
[INFO] | | | +- com.netflix.netflix-commons:netflix-infix:jar:0.3.0:runtime (optional)
[INFO] | | | | +- commons-jxpath:commons-jxpath:jar:1.3:runtime (optional)
[INFO] | | | | +- joda-time:joda-time:jar:2.3:compile (optional)
[INFO] | | | | +- org.antlr:antlr-runtime:jar:3.4:runtime (optional)
[INFO] | | | | | +- org.antlr:stringtemplate:jar:3.2.1:runtime (optional)
[INFO] | | | | | \- antlr:antlr:jar:2.7.7:runtime (optional)
[INFO] | | | | \- com.google.code.gson:gson:jar:2.8.8:compile (optional)
[INFO] | | | \- org.apache.commons:commons-math:jar:2.2:runtime (optional)
[INFO] | | +- com.thoughtworks.xstream:xstream:jar:1.4.18:compile (optional)
[INFO] | | | \- io.github.x-stream:mxparser:jar:1.2.2:compile (optional)
[INFO] | | | \- xmlpull:xmlpull:jar:1.1.3.1:compile (optional)
[INFO] | | +- javax.ws.rs:jsr311-api:jar:1.1.1:compile (optional)
[INFO] | | +- com.netflix.servo:servo-core:jar:0.12.21:compile (optional)
[INFO] | | | \- com.google.guava:guava:jar:19.0:compile (optional)
[INFO] | | +- commons-configuration:commons-configuration:jar:1.10:compile (optional)
[INFO] | | | \- commons-lang:commons-lang:jar:2.6:compile (optional)
[INFO] | | +- com.google.inject:guice:jar:4.1.0:compile (optional)
[INFO] | | | +- javax.inject:javax.inject:jar:1:compile (optional)
[INFO] | | | \- aopalliance:aopalliance:jar:1.0:compile (optional)
[INFO] | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.12.5:compile
[INFO] | | \- org.codehaus.jettison:jettison:jar:1.4.0:runtime (optional)
[INFO] | +- com.netflix.eureka:eureka-core:jar:1.10.16:compile (optional)
[INFO] | | \- com.fasterxml.woodstox:woodstox-core:jar:6.2.1:compile (optional)
[INFO] | | \- org.codehaus.woodstox:stax2-api:jar:4.2.1:compile (optional)
[INFO] | \- org.springframework.cloud:spring-cloud-starter-loadbalancer:jar:3.0.4:compile (optional)
[INFO] | +- org.springframework.cloud:spring-cloud-loadbalancer:jar:3.0.4:compile (optional)
[INFO] | +- org.springframework.boot:spring-boot-starter-cache:jar:2.5.6:compile (optional)
[INFO] | | \- org.springframework:spring-context-support:jar:5.3.12:compile (optional)
[INFO] | \- com.stoyanr:evictor:jar:1.0.0:compile (optional)
[INFO] +- org.springframework.cloud:spring-cloud-starter-kubernetes-client:jar:2.0.4:compile (optional)
[INFO] | +- org.springframework.cloud:spring-cloud-kubernetes-commons:jar:2.0.4:compile (optional)
[INFO] | | \- javax.annotation:javax.annotation-api:jar:1.3.2:compile (optional)
[INFO] | +- org.springframework.cloud:spring-cloud-kubernetes-client-autoconfig:jar:2.0.4:compile (optional)
[INFO] | | +- io.kubernetes:client-java:jar:11.0.2:compile (optional)
[INFO] | | | +- io.prometheus:simpleclient:jar:0.10.0:compile (optional)
[INFO] | | | +- io.prometheus:simpleclient_httpserver:jar:0.10.0:compile (optional)
[INFO] | | | | \- io.prometheus:simpleclient_common:jar:0.10.0:compile (optional)
[INFO] | | | +- io.kubernetes:client-java-api:jar:11.0.2:compile (optional)
[INFO] | | | | +- io.swagger:swagger-annotations:jar:1.6.2:compile (optional)
[INFO] | | | | +- io.gsonfire:gson-fire:jar:1.8.5:compile (optional)
[INFO] | | | | \- org.joda:joda-convert:jar:2.2.1:compile (optional)
[INFO] | | | +- io.kubernetes:client-java-proto:jar:11.0.2:compile (optional)
[INFO] | | | +- org.apache.commons:commons-compress:jar:1.20:compile (optional)
[INFO] | | | +- org.apache.commons:commons-lang3:jar:3.12.0:compile (optional)
[INFO] | | | +- commons-io:commons-io:jar:2.8.0:compile (optional)
[INFO] | | | +- org.bouncycastle:bcprov-ext-jdk15on:jar:1.66:compile (optional)
[INFO] | | | +- com.google.protobuf:protobuf-java:jar:3.14.0:compile (optional)
[INFO] | | | +- org.apache.commons:commons-collections4:jar:4.4:compile (optional)
[INFO] | | | \- org.bitbucket.b_c:jose4j:jar:0.7.3:compile (optional)
[INFO] | | +- io.kubernetes:client-java-extended:jar:11.0.2:compile (optional)
[INFO] | | | +- com.github.vladimir-bukhtoyarov:bucket4j-core:jar:4.10.0:compile (optional)
[INFO] | | | +- com.flipkart.zjsonpatch:zjsonpatch:jar:0.4.11:compile (optional)
[INFO] | | | \- com.github.ben-manes.caffeine:caffeine:jar:2.9.2:compile (optional)
[INFO] | | | +- org.checkerframework:checker-qual:jar:3.10.0:compile (optional)
[INFO] | | | \- com.google.errorprone:error_prone_annotations:jar:2.5.1:compile (optional)
[INFO] | | \- io.kubernetes:client-java-spring-integration:jar:11.0.2:compile (optional)
[INFO] | \- org.springframework.cloud:spring-cloud-kubernetes-client-discovery:jar:2.0.4:compile (optional)
[INFO] +- org.springframework.cloud:spring-cloud-starter-kubernetes-fabric8:jar:2.0.4:compile (optional)
[INFO] | +- org.springframework.cloud:spring-cloud-kubernetes-fabric8-autoconfig:jar:2.0.4:compile (optional)
[INFO] | | \- io.fabric8:kubernetes-client:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-core:jar:4.13.3:compile (optional)
[INFO] | | | +- io.fabric8:kubernetes-model-common:jar:4.13.3:compile (optional)
[INFO] | | | +- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.12.5:compile (optional)
[INFO] | | | \- javax.xml.bind:jaxb-api:jar:2.3.1:compile (optional)
[INFO] | | | \- javax.activation:javax.activation-api:jar:1.2.0:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-rbac:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-admissionregistration:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-apps:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-autoscaling:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-apiextensions:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-batch:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-certificates:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-coordination:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-discovery:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-events:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-extensions:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-networking:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-metrics:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-policy:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-scheduling:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-settings:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-storageclass:jar:4.13.3:compile (optional)
[INFO] | | +- io.fabric8:kubernetes-model-node:jar:4.13.3:compile (optional)
[INFO] | | +- com.squareup.okhttp3:okhttp:jar:3.14.9:compile (optional)
[INFO] | | | \- com.squareup.okio:okio:jar:1.17.2:compile (optional)
[INFO] | | +- com.squareup.okhttp3:logging-interceptor:jar:3.14.9:compile (optional)
[INFO] | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.12.5:compile (optional)
[INFO] | | +- io.fabric8:zjsonpatch:jar:0.3.0:compile (optional)
[INFO] | | \- com.github.mifmif:generex:jar:1.0.2:compile (optional)
[INFO] | | \- dk.brics.automaton:automaton:jar:1.11-8:compile (optional)
[INFO] | \- org.springframework.cloud:spring-cloud-kubernetes-fabric8-discovery:jar:2.0.4:compile (optional)
[INFO] +- org.springframework.boot:spring-boot-autoconfigure-processor:jar:2.5.6:compile (optional)
[INFO] +- com.google.code.findbugs:jsr305:jar:3.0.2:provided
[INFO] +- org.springframework.boot:spring-boot-configuration-processor:jar:2.5.6:compile (optional)
[INFO] +- org.springframework.boot:spring-boot-starter-test:jar:2.5.6:test
[INFO] | +- org.springframework.boot:spring-boot-test:jar:2.5.6:test
[INFO] | +- org.springframework.boot:spring-boot-test-autoconfigure:jar:2.5.6:test
[INFO] | +- com.jayway.jsonpath:json-path:jar:2.5.0:test
[INFO] | | +- net.minidev:json-smart:jar:2.4.7:test
[INFO] | | | \- net.minidev:accessors-smart:jar:2.4.7:test
[INFO] | | | \- org.ow2.asm:asm:jar:9.1:test
[INFO] | | \- org.slf4j:slf4j-api:jar:1.7.32:compile
[INFO] | +- jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:compile
[INFO] | | \- jakarta.activation:jakarta.activation-api:jar:1.2.2:compile
[INFO] | +- org.assertj:assertj-core:jar:3.19.0:test
[INFO] | +- org.hamcrest:hamcrest:jar:2.2:test
[INFO] | +- org.junit.jupiter:junit-jupiter:jar:5.7.2:test
[INFO] | | +- org.junit.jupiter:junit-jupiter-api:jar:5.7.2:test
[INFO] | | | +- org.apiguardian:apiguardian-api:jar:1.1.0:test
[INFO] | | | +- org.opentest4j:opentest4j:jar:1.2.0:test
[INFO] | | | \- org.junit.platform:junit-platform-commons:jar:1.7.2:test
[INFO] | | +- org.junit.jupiter:junit-jupiter-params:jar:5.7.2:test
[INFO] | | \- org.junit.jupiter:junit-jupiter-engine:jar:5.7.2:test
[INFO] | | \- org.junit.platform:junit-platform-engine:jar:1.7.2:test
[INFO] | +- org.mockito:mockito-core:jar:3.9.0:test
[INFO] | | +- net.bytebuddy:byte-buddy:jar:1.10.22:test
[INFO] | | +- net.bytebuddy:byte-buddy-agent:jar:1.10.22:test
[INFO] | | \- org.objenesis:objenesis:jar:3.2:test
[INFO] | +- org.mockito:mockito-junit-jupiter:jar:3.9.0:test
[INFO] | +- org.skyscreamer:jsonassert:jar:1.5.0:test
[INFO] | | \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
[INFO] | +- org.springframework:spring-core:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-jcl:jar:5.3.12:compile
[INFO] | +- org.springframework:spring-test:jar:5.3.12:test
[INFO] | \- org.xmlunit:xmlunit-core:jar:2.8.3:test
[INFO] +- org.springframework.boot:spring-boot-starter-security:jar:2.5.6:test
[INFO] | +- org.springframework:spring-aop:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-beans:jar:5.3.12:compile
[INFO] | +- org.springframework.security:spring-security-config:jar:5.5.3:test
[INFO] | | +- org.springframework.security:spring-security-core:jar:5.5.3:test
[INFO] | | \- org.springframework:spring-context:jar:5.3.12:compile
[INFO] | \- org.springframework.security:spring-security-web:jar:5.5.3:test
[INFO] | \- org.springframework:spring-expression:jar:5.3.12:compile
[INFO] +- com.fasterxml.jackson.datatype:jackson-datatype-json-org:jar:2.12.5:test
[INFO] | +- org.json:json:jar:20190722:test
[INFO] | +- com.fasterxml.jackson.core:jackson-core:jar:2.12.5:compile
[INFO] | \- com.fasterxml.jackson.core:jackson-databind:jar:2.12.5:compile
[INFO] \- io.projectreactor:reactor-test:jar:3.4.11:test
[INFO] \- io.projectreactor:reactor-core:jar:3.4.11:compile
[INFO] \- org.reactivestreams:reactive-streams:jar:1.0.3:compile
[INFO]
[INFO] ----------< de.codecentric:spring-boot-admin-starter-server >-----------
[INFO] Building Spring Boot Admin Server Starter 2.5.5-SNAPSHOT [9/19]
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-server-ui/2.5.5-SNAPSHOT/maven-metadata.xml
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-server-cloud/2.5.5-SNAPSHOT/maven-metadata.xml
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-starter-server ---
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-server-ui/2.5.5-SNAPSHOT/spring-boot-admin-server-ui-2.5.5-SNAPSHOT.jar
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-server-cloud/2.5.5-SNAPSHOT/spring-boot-admin-server-cloud-2.5.5-SNAPSHOT.jar
[INFO] de.codecentric:spring-boot-admin-starter-server:jar:2.5.5-SNAPSHOT
[INFO] +- de.codecentric:spring-boot-admin-server:jar:2.5.5-SNAPSHOT:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot:jar:2.5.6:compile
[INFO] | | | \- org.springframework:spring-context:jar:5.3.12:compile
[INFO] | | | +- org.springframework:spring-aop:jar:5.3.12:compile
[INFO] | | | \- org.springframework:spring-expression:jar:5.3.12:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:2.5.6:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.2.8:compile
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.2.6:compile
[INFO] | | | +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.14.1:compile
[INFO] | | | | \- org.apache.logging.log4j:log4j-api:jar:2.14.1:compile
[INFO] | | | \- org.slf4j:jul-to-slf4j:jar:1.7.32:compile
[INFO] | | +- jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile
[INFO] | | +- org.springframework:spring-core:jar:5.3.12:compile
[INFO] | | | \- org.springframework:spring-jcl:jar:5.3.12:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.28:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-webflux:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-json:jar:2.5.6:compile
[INFO] | | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.12.5:compile
[INFO] | | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.12.5:compile
[INFO] | | | | \- com.fasterxml.jackson.core:jackson-core:jar:2.12.5:compile
[INFO] | | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.12.5:compile
[INFO] | | | +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.12.5:compile
[INFO] | | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.12.5:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-reactor-netty:jar:2.5.6:compile
[INFO] | | | \- io.projectreactor.netty:reactor-netty-http:jar:1.0.12:compile
[INFO] | | | +- io.netty:netty-codec-http:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-common:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-buffer:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-transport:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-codec:jar:4.1.69.Final:compile
[INFO] | | | | \- io.netty:netty-handler:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-codec-http2:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-resolver-dns:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-resolver:jar:4.1.69.Final:compile
[INFO] | | | | \- io.netty:netty-codec-dns:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.69.Final:compile
[INFO] | | | | \- io.netty:netty-transport-native-unix-common:jar:4.1.69.Final:compile
[INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.69.Final:compile
[INFO] | | | \- io.projectreactor.netty:reactor-netty-core:jar:1.0.12:compile
[INFO] | | | \- io.netty:netty-handler-proxy:jar:4.1.69.Final:compile
[INFO] | | | \- io.netty:netty-codec-socks:jar:4.1.69.Final:compile
[INFO] | | +- org.springframework:spring-web:jar:5.3.12:compile
[INFO] | | | \- org.springframework:spring-beans:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-webflux:jar:5.3.12:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-thymeleaf:jar:2.5.6:compile
[INFO] | | +- org.thymeleaf:thymeleaf-spring5:jar:3.0.12.RELEASE:compile
[INFO] | | | +- org.thymeleaf:thymeleaf:jar:3.0.12.RELEASE:compile
[INFO] | | | | +- org.attoparser:attoparser:jar:2.0.5.RELEASE:compile
[INFO] | | | | \- org.unbescape:unbescape:jar:1.1.6.RELEASE:compile
[INFO] | | | \- org.slf4j:slf4j-api:jar:1.7.32:compile
[INFO] | | \- org.thymeleaf.extras:thymeleaf-extras-java8time:jar:3.0.4.RELEASE:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-actuator:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:2.5.6:compile
[INFO] | | | \- org.springframework.boot:spring-boot-actuator:jar:2.5.6:compile
[INFO] | | \- io.micrometer:micrometer-core:jar:1.7.5:compile
[INFO] | | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:compile
[INFO] | | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime
[INFO] | +- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] | | +- org.apache.httpcomponents:httpcore:jar:4.4.14:compile
[INFO] | | \- commons-codec:commons-codec:jar:1.15:compile
[INFO] | \- io.projectreactor.addons:reactor-extra:jar:3.4.5:compile
[INFO] | \- io.projectreactor:reactor-core:jar:3.4.11:compile
[INFO] | \- org.reactivestreams:reactive-streams:jar:1.0.3:compile
[INFO] +- de.codecentric:spring-boot-admin-server-ui:jar:2.5.5-SNAPSHOT:compile
[INFO] \- de.codecentric:spring-boot-admin-server-cloud:jar:2.5.5-SNAPSHOT:compile
[INFO]
[INFO] ----------< de.codecentric:spring-boot-admin-starter-client >-----------
[INFO] Building Spring Boot Admin Client Starter 2.5.5-SNAPSHOT [10/19]
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-client/2.5.5-SNAPSHOT/maven-metadata.xml
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-starter-client ---
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-client/2.5.5-SNAPSHOT/spring-boot-admin-client-2.5.5-SNAPSHOT.jar
[INFO] de.codecentric:spring-boot-admin-starter-client:jar:2.5.5-SNAPSHOT
[INFO] \- de.codecentric:spring-boot-admin-client:jar:2.5.5-SNAPSHOT:compile
[INFO] +- org.springframework.boot:spring-boot-starter:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot:jar:2.5.6:compile
[INFO] | | \- org.springframework:spring-context:jar:5.3.12:compile
[INFO] | | +- org.springframework:spring-aop:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-expression:jar:5.3.12:compile
[INFO] | +- org.springframework.boot:spring-boot-autoconfigure:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-logging:jar:2.5.6:compile
[INFO] | | +- ch.qos.logback:logback-classic:jar:1.2.8:compile
[INFO] | | | +- ch.qos.logback:logback-core:jar:1.2.6:compile
[INFO] | | | \- org.slf4j:slf4j-api:jar:1.7.32:compile
[INFO] | | +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.14.1:compile
[INFO] | | | \- org.apache.logging.log4j:log4j-api:jar:2.14.1:compile
[INFO] | | \- org.slf4j:jul-to-slf4j:jar:1.7.32:compile
[INFO] | +- jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile
[INFO] | +- org.springframework:spring-core:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-jcl:jar:5.3.12:compile
[INFO] | \- org.yaml:snakeyaml:jar:1.28:compile
[INFO] +- org.springframework.boot:spring-boot-starter-actuator:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-actuator:jar:2.5.6:compile
[INFO] | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.12.5:runtime
[INFO] | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.12.5:runtime
[INFO] | | | \- com.fasterxml.jackson.core:jackson-core:jar:2.12.5:runtime
[INFO] | | \- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.12.5:runtime
[INFO] | \- io.micrometer:micrometer-core:jar:1.7.5:compile
[INFO] | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:compile
[INFO] | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime
[INFO] \- org.springframework:spring-web:jar:5.3.12:compile
[INFO] \- org.springframework:spring-beans:jar:5.3.12:compile
[INFO]
[INFO] --------------< de.codecentric:spring-boot-admin-samples >--------------
[INFO] Building Spring Boot Admin Samples 2.5.5-SNAPSHOT [11/19]
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-samples ---
[INFO] de.codecentric:spring-boot-admin-samples:pom:2.5.5-SNAPSHOT
[INFO]
[INFO] ---------< de.codecentric:spring-boot-admin-sample-custom-ui >----------
[INFO] Building Spring Boot Admin Server custom UI 2.5.5-SNAPSHOT [12/19]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-sample-custom-ui ---
[INFO] de.codecentric:spring-boot-admin-sample-custom-ui:jar:2.5.5-SNAPSHOT
[INFO]
[INFO] ----------< de.codecentric:spring-boot-admin-sample-servlet >-----------
[INFO] Building Spring Boot Admin Sample Servlet 2.5.5-SNAPSHOT [13/19]
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-sample-custom-ui/2.5.5-SNAPSHOT/maven-metadata.xml
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-starter-server/2.5.5-SNAPSHOT/maven-metadata.xml
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-starter-client/2.5.5-SNAPSHOT/maven-metadata.xml
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-sample-servlet ---
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-sample-custom-ui/2.5.5-SNAPSHOT/spring-boot-admin-sample-custom-ui-2.5.5-SNAPSHOT.jar
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-starter-server/2.5.5-SNAPSHOT/spring-boot-admin-starter-server-2.5.5-SNAPSHOT.jar
Downloading from spring-snapshot: https://repo.spring.io/snapshot/de/codecentric/spring-boot-admin-starter-client/2.5.5-SNAPSHOT/spring-boot-admin-starter-client-2.5.5-SNAPSHOT.jar
[INFO] de.codecentric:spring-boot-admin-sample-servlet:jar:2.5.5-SNAPSHOT
[INFO] +- de.codecentric:spring-boot-admin-sample-custom-ui:jar:2.5.5-SNAPSHOT:compile
[INFO] +- de.codecentric:spring-boot-admin-starter-server:jar:2.5.5-SNAPSHOT:compile
[INFO] | +- de.codecentric:spring-boot-admin-server:jar:2.5.5-SNAPSHOT:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-webflux:jar:2.5.6:compile
[INFO] | | | +- org.springframework.boot:spring-boot-starter-reactor-netty:jar:2.5.6:compile
[INFO] | | | | \- io.projectreactor.netty:reactor-netty-http:jar:1.0.12:compile
[INFO] | | | | +- io.netty:netty-codec-http:jar:4.1.69.Final:compile
[INFO] | | | | | +- io.netty:netty-common:jar:4.1.69.Final:compile
[INFO] | | | | | +- io.netty:netty-buffer:jar:4.1.69.Final:compile
[INFO] | | | | | +- io.netty:netty-transport:jar:4.1.69.Final:compile
[INFO] | | | | | +- io.netty:netty-codec:jar:4.1.69.Final:compile
[INFO] | | | | | \- io.netty:netty-handler:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-codec-http2:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-resolver-dns:jar:4.1.69.Final:compile
[INFO] | | | | | +- io.netty:netty-resolver:jar:4.1.69.Final:compile
[INFO] | | | | | \- io.netty:netty-codec-dns:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.69.Final:compile
[INFO] | | | | | \- io.netty:netty-transport-native-unix-common:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.69.Final:compile
[INFO] | | | | \- io.projectreactor.netty:reactor-netty-core:jar:1.0.12:compile
[INFO] | | | | \- io.netty:netty-handler-proxy:jar:4.1.69.Final:compile
[INFO] | | | | \- io.netty:netty-codec-socks:jar:4.1.69.Final:compile
[INFO] | | | \- org.springframework:spring-webflux:jar:5.3.12:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-thymeleaf:jar:2.5.6:compile
[INFO] | | | +- org.thymeleaf:thymeleaf-spring5:jar:3.0.12.RELEASE:compile
[INFO] | | | | \- org.thymeleaf:thymeleaf:jar:3.0.12.RELEASE:compile
[INFO] | | | | +- org.attoparser:attoparser:jar:2.0.5.RELEASE:compile
[INFO] | | | | \- org.unbescape:unbescape:jar:1.1.6.RELEASE:compile
[INFO] | | | \- org.thymeleaf.extras:thymeleaf-extras-java8time:jar:3.0.4.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-actuator:jar:2.5.6:compile
[INFO] | | | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:2.5.6:compile
[INFO] | | | | \- org.springframework.boot:spring-boot-actuator:jar:2.5.6:compile
[INFO] | | | \- io.micrometer:micrometer-core:jar:1.7.5:compile
[INFO] | | | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:compile
[INFO] | | | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime
[INFO] | | +- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] | | | +- org.apache.httpcomponents:httpcore:jar:4.4.14:compile
[INFO] | | | \- commons-codec:commons-codec:jar:1.15:compile
[INFO] | | \- io.projectreactor.addons:reactor-extra:jar:3.4.5:compile
[INFO] | | \- io.projectreactor:reactor-core:jar:3.4.11:compile
[INFO] | | \- org.reactivestreams:reactive-streams:jar:1.0.3:compile
[INFO] | +- de.codecentric:spring-boot-admin-server-ui:jar:2.5.5-SNAPSHOT:compile
[INFO] | \- de.codecentric:spring-boot-admin-server-cloud:jar:2.5.5-SNAPSHOT:compile
[INFO] +- org.springframework.boot:spring-boot-starter-security:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:2.5.6:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.2.8:compile
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.2.6:compile
[INFO] | | | +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.14.1:compile
[INFO] | | | | \- org.apache.logging.log4j:log4j-api:jar:2.14.1:compile
[INFO] | | | \- org.slf4j:jul-to-slf4j:jar:1.7.32:compile
[INFO] | | +- jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.28:compile
[INFO] | +- org.springframework:spring-aop:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-beans:jar:5.3.12:compile
[INFO] | +- org.springframework.security:spring-security-config:jar:5.5.3:compile
[INFO] | | \- org.springframework.security:spring-security-core:jar:5.5.3:compile
[INFO] | | \- org.springframework.security:spring-security-crypto:jar:5.5.3:compile
[INFO] | \- org.springframework.security:spring-security-web:jar:5.5.3:compile
[INFO] | \- org.springframework:spring-expression:jar:5.3.12:compile
[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-json:jar:2.5.6:compile
[INFO] | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.12.5:compile
[INFO] | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.12.5:compile
[INFO] | | | \- com.fasterxml.jackson.core:jackson-core:jar:2.12.5:compile
[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.12.5:compile
[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.12.5:compile
[INFO] | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.12.5:compile
[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:2.5.6:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.54:compile
[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:9.0.54:compile
[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:9.0.54:compile
[INFO] | +- org.springframework:spring-web:jar:5.3.12:compile
[INFO] | \- org.springframework:spring-webmvc:jar:5.3.12:compile
[INFO] +- org.springframework.boot:spring-boot-starter-mail:jar:2.5.6:compile
[INFO] | +- org.springframework:spring-context-support:jar:5.3.12:compile
[INFO] | \- com.sun.mail:jakarta.mail:jar:1.6.7:compile
[INFO] | \- com.sun.activation:jakarta.activation:jar:1.2.2:compile
[INFO] +- de.codecentric:spring-boot-admin-starter-client:jar:2.5.5-SNAPSHOT:compile
[INFO] | \- de.codecentric:spring-boot-admin-client:jar:2.5.5-SNAPSHOT:compile
[INFO] +- org.springframework.session:spring-session-core:jar:2.5.3:compile
[INFO] | \- org.springframework:spring-jcl:jar:5.3.12:compile
[INFO] +- org.springframework.session:spring-session-jdbc:jar:2.5.3:compile
[INFO] | +- org.springframework:spring-context:jar:5.3.12:compile
[INFO] | \- org.springframework:spring-jdbc:jar:5.3.12:compile
[INFO] | \- org.springframework:spring-tx:jar:5.3.12:compile
[INFO] +- org.hsqldb:hsqldb:jar:2.5.2:compile
[INFO] \- org.springframework.boot:spring-boot-starter-test:jar:2.5.6:test
[INFO] +- org.springframework.boot:spring-boot-test:jar:2.5.6:test
[INFO] +- org.springframework.boot:spring-boot-test-autoconfigure:jar:2.5.6:test
[INFO] +- com.jayway.jsonpath:json-path:jar:2.5.0:test
[INFO] | +- net.minidev:json-smart:jar:2.4.7:test
[INFO] | | \- net.minidev:accessors-smart:jar:2.4.7:test
[INFO] | | \- org.ow2.asm:asm:jar:9.1:test
[INFO] | \- org.slf4j:slf4j-api:jar:1.7.32:compile
[INFO] +- jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3:test
[INFO] | \- jakarta.activation:jakarta.activation-api:jar:1.2.2:test
[INFO] +- org.assertj:assertj-core:jar:3.19.0:test
[INFO] +- org.hamcrest:hamcrest:jar:2.2:test
[INFO] +- org.junit.jupiter:junit-jupiter:jar:5.7.2:test
[INFO] | +- org.junit.jupiter:junit-jupiter-api:jar:5.7.2:test
[INFO] | | +- org.apiguardian:apiguardian-api:jar:1.1.0:test
[INFO] | | +- org.opentest4j:opentest4j:jar:1.2.0:test
[INFO] | | \- org.junit.platform:junit-platform-commons:jar:1.7.2:test
[INFO] | +- org.junit.jupiter:junit-jupiter-params:jar:5.7.2:test
[INFO] | \- org.junit.jupiter:junit-jupiter-engine:jar:5.7.2:test
[INFO] | \- org.junit.platform:junit-platform-engine:jar:1.7.2:test
[INFO] +- org.mockito:mockito-core:jar:3.9.0:test
[INFO] | +- net.bytebuddy:byte-buddy:jar:1.10.22:test
[INFO] | +- net.bytebuddy:byte-buddy-agent:jar:1.10.22:test
[INFO] | \- org.objenesis:objenesis:jar:3.2:test
[INFO] +- org.mockito:mockito-junit-jupiter:jar:3.9.0:test
[INFO] +- org.skyscreamer:jsonassert:jar:1.5.0:test
[INFO] | \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
[INFO] +- org.springframework:spring-core:jar:5.3.12:compile
[INFO] +- org.springframework:spring-test:jar:5.3.12:test
[INFO] \- org.xmlunit:xmlunit-core:jar:2.8.3:test
[INFO]
[INFO] ----------< de.codecentric:spring-boot-admin-sample-reactive >----------
[INFO] Building Spring Boot Admin Sample Reactive 2.5.5-SNAPSHOT [14/19]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:3.2.0:tree (default-cli) @ spring-boot-admin-sample-reactive ---
[INFO] de.codecentric:spring-boot-admin-sample-reactive:jar:2.5.5-SNAPSHOT
[INFO] +- de.codecentric:spring-boot-admin-starter-server:jar:2.5.5-SNAPSHOT:compile
[INFO] | +- de.codecentric:spring-boot-admin-server:jar:2.5.5-SNAPSHOT:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-webflux:jar:2.5.6:compile
[INFO] | | | +- org.springframework.boot:spring-boot-starter-json:jar:2.5.6:compile
[INFO] | | | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.12.5:compile
[INFO] | | | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.12.5:compile
[INFO] | | | | | \- com.fasterxml.jackson.core:jackson-core:jar:2.12.5:compile
[INFO] | | | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.12.5:compile
[INFO] | | | | +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.12.5:compile
[INFO] | | | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.12.5:compile
[INFO] | | | +- org.springframework.boot:spring-boot-starter-reactor-netty:jar:2.5.6:compile
[INFO] | | | | \- io.projectreactor.netty:reactor-netty-http:jar:1.0.12:compile
[INFO] | | | | +- io.netty:netty-codec-http:jar:4.1.69.Final:compile
[INFO] | | | | | +- io.netty:netty-common:jar:4.1.69.Final:compile
[INFO] | | | | | +- io.netty:netty-buffer:jar:4.1.69.Final:compile
[INFO] | | | | | +- io.netty:netty-transport:jar:4.1.69.Final:compile
[INFO] | | | | | +- io.netty:netty-codec:jar:4.1.69.Final:compile
[INFO] | | | | | \- io.netty:netty-handler:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-codec-http2:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-resolver-dns:jar:4.1.69.Final:compile
[INFO] | | | | | +- io.netty:netty-resolver:jar:4.1.69.Final:compile
[INFO] | | | | | \- io.netty:netty-codec-dns:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.69.Final:compile
[INFO] | | | | | \- io.netty:netty-transport-native-unix-common:jar:4.1.69.Final:compile
[INFO] | | | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.69.Final:compile
[INFO] | | | | \- io.projectreactor.netty:reactor-netty-core:jar:1.0.12:compile
[INFO] | | | | \- io.netty:netty-handler-proxy:jar:4.1.69.Final:compile
[INFO] | | | | \- io.netty:netty-codec-socks:jar:4.1.69.Final:compile
[INFO] | | | \- org.springframework:spring-webflux:jar:5.3.12:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-thymeleaf:jar:2.5.6:compile
[INFO] | | | +- org.thymeleaf:thymeleaf-spring5:jar:3.0.12.RELEASE:compile
[INFO] | | | | \- org.thymeleaf:thymeleaf:jar:3.0.12.RELEASE:compile
[INFO] | | | | +- org.attoparser:attoparser:jar:2.0.5.RELEASE:compile
[INFO] | | | | \- org.unbescape:unbescape:jar:1.1.6.RELEASE:compile
[INFO] | | | \- org.thymeleaf.extras:thymeleaf-extras-java8time:jar:3.0.4.RELEASE:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-actuator:jar:2.5.6:compile
[INFO] | | | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:2.5.6:compile
[INFO] | | | | \- org.springframework.boot:spring-boot-actuator:jar:2.5.6:compile
[INFO] | | | \- io.micrometer:micrometer-core:jar:1.7.5:compile
[INFO] | | | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:compile
[INFO] | | | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime
[INFO] | | +- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] | | | +- org.apache.httpcomponents:httpcore:jar:4.4.14:compile
[INFO] | | | \- commons-codec:commons-codec:jar:1.15:compile
[INFO] | | \- io.projectreactor.addons:reactor-extra:jar:3.4.5:compile
[INFO] | | \- io.projectreactor:reactor-core:jar:3.4.11:compile
[INFO] | | \- org.reactivestreams:reactive-streams:jar:1.0.3:compile
[INFO] | +- de.codecentric:spring-boot-admin-server-ui:jar:2.5.5-SNAPSHOT:compile
[INFO] | \- de.codecentric:spring-boot-admin-server-cloud:jar:2.5.5-SNAPSHOT:compile
[INFO] +- org.springframework.boot:spring-boot-starter-security:jar:2.5.6:compile
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:2.5.6:compile
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:2.5.6:compile
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.2.8:compile
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.2.6:compile
[INFO] | | | +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.14.1:compile
[INFO] | | | | \- org.apache.logging.log4j:log4j-api:jar:2.14.1:compile
[INFO] | | | \- org.slf4j:jul-to-slf4j:jar:1.7.32:compile
[INFO] | | +- jakarta.annotation:jakarta.annotation-api:jar:1.3.5:compile
[INFO] | | \- org.yaml:snakeyaml:jar:1.28:compile
[INFO] | +- org.springframework:spring-aop:jar:5.3.12:compile
[INFO] | | \- org.springframework:spring-beans:jar:5.3.12:compile
[INFO] | +- org.springframework.security:spring-security-config:jar:5.5.3:compile
[INFO] | | +- org.springframework.security:spring-security-core:jar:5.5.3:compile