-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependency-tree
5364 lines (5360 loc) · 357 KB
/
dependency-tree
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] Detecting the operating system and CPU architecture
[INFO] ------------------------------------------------------------------------
[INFO] os.detected.name: linux
[INFO] os.detected.arch: x86_64
[INFO] os.detected.version: 6.10
[INFO] os.detected.version.major: 6
[INFO] os.detected.version.minor: 10
[INFO] os.detected.release: manjaro
[INFO] os.detected.release.like.manjaro: true
[INFO] os.detected.release.like.arch: true
[INFO] os.detected.classifier: linux-x86_64
[INFO] ------------------------------------------------------------------------
[INFO] Detecting the operating system and CPU architecture
[INFO] ------------------------------------------------------------------------
[INFO] os.detected.name: linux
[INFO] os.detected.arch: x86_64
[INFO] os.detected.version: 6.10
[INFO] os.detected.version.major: 6
[INFO] os.detected.version.minor: 10
[INFO] os.detected.release: manjaro
[INFO] os.detected.release.like.manjaro: true
[INFO] os.detected.release.like.arch: true
[INFO] os.detected.classifier: linux-x86_64
[INFO] ------------------------------------------------------------------------
[INFO] Detecting the operating system and CPU architecture
[INFO] ------------------------------------------------------------------------
[INFO] os.detected.name: linux
[INFO] os.detected.arch: x86_64
[INFO] os.detected.version: 6.10
[INFO] os.detected.version.major: 6
[INFO] os.detected.version.minor: 10
[INFO] os.detected.release: manjaro
[INFO] os.detected.release.like.manjaro: true
[INFO] os.detected.release.like.arch: true
[INFO] os.detected.classifier: linux-x86_64
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] hugegraph [pom]
[INFO] hugegraph-commons [pom]
[INFO] hugegraph-common [jar]
[INFO] hugegraph-pd [pom]
[INFO] hg-pd-grpc [jar]
[INFO] hg-pd-common [jar]
[INFO] hg-pd-client [jar]
[INFO] hugegraph-store [pom]
[INFO] hg-store-common [jar]
[INFO] hugegraph-server [pom]
[INFO] hugegraph-core [jar]
[INFO] hugegraph-rpc [jar]
[INFO] hugegraph-api [jar]
[INFO] hugegraph-cassandra [jar]
[INFO] hugegraph-scylladb [jar]
[INFO] hugegraph-rocksdb [jar]
[INFO] hugegraph-mysql [jar]
[INFO] hugegraph-palo [jar]
[INFO] hugegraph-hbase [jar]
[INFO] hugegraph-postgresql [jar]
[INFO] hg-store-grpc [jar]
[INFO] hg-store-client [jar]
[INFO] hugegraph-hstore [jar]
[INFO] hugegraph-dist [jar]
[INFO] hugegraph-example [jar]
[INFO] hugegraph-test [jar]
[INFO] hg-pd-core [jar]
[INFO] hg-pd-service [jar]
[INFO] hg-pd-dist [jar]
[INFO] hg-pd-test [jar]
[INFO] hg-store-rocksdb [jar]
[INFO] hg-store-core [jar]
[INFO] hg-store-node [jar]
[INFO] hg-store-test [jar]
[INFO] hg-store-dist [jar]
[INFO] hg-store-cli [jar]
[INFO] install-dist [jar]
[INFO] hugegraph-cluster-test [pom]
[INFO] hugegraph-clustertest-minicluster [jar]
[INFO] hugegraph-clustertest-dist [jar]
[INFO] hugegraph-clustertest-test [jar]
[INFO]
[INFO] -------------------< org.apache.hugegraph:hugegraph >-------------------
[INFO] Building hugegraph 1.5.0 [1/41]
[INFO] from pom.xml
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hugegraph ---
[INFO] org.apache.hugegraph:hugegraph:pom:1.5.0
[INFO]
[INFO] ---------------< org.apache.hugegraph:hugegraph-commons >---------------
[INFO] Building hugegraph-commons 1.5.0 [2/41]
[INFO] from hugegraph-commons/pom.xml
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hugegraph-commons ---
[INFO] org.apache.hugegraph:hugegraph-commons:pom:1.5.0
[INFO]
[INFO] ---------------< org.apache.hugegraph:hugegraph-common >----------------
[INFO] Building hugegraph-common 1.5.0 [3/41]
[INFO] from hugegraph-commons/hugegraph-common/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hugegraph-common ---
[INFO] org.apache.hugegraph:hugegraph-common:jar:1.5.0
[INFO] +- junit:junit:jar:4.13.1:compile
[INFO] | \- org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO] +- org.mockito:mockito-core:jar:4.1.0:test
[INFO] | +- net.bytebuddy:byte-buddy:jar:1.12.1:test
[INFO] | +- net.bytebuddy:byte-buddy-agent:jar:1.12.1:test
[INFO] | \- org.objenesis:objenesis:jar:3.2:test
[INFO] +- org.apache.logging.log4j:log4j-api:jar:2.18.0:compile
[INFO] +- org.apache.logging.log4j:log4j-core:jar:2.18.0:compile
[INFO] +- org.apache.logging.log4j:log4j-slf4j-impl:jar:2.18.0:compile
[INFO] | \- org.slf4j:slf4j-api:jar:1.7.25:compile
[INFO] +- org.glassfish:javax.json:jar:1.0:compile
[INFO] +- commons-configuration:commons-configuration:jar:1.10:compile
[INFO] | +- commons-lang:commons-lang:jar:2.6:compile
[INFO] | \- commons-logging:commons-logging:jar:1.1.1:compile
[INFO] +- org.apache.commons:commons-configuration2:jar:2.8.0:compile
[INFO] | \- org.apache.commons:commons-text:jar:1.9:compile
[INFO] +- org.apache.commons:commons-lang3:jar:3.12.0:compile
[INFO] +- commons-beanutils:commons-beanutils:jar:1.9.4:compile
[INFO] +- commons-io:commons-io:jar:2.7:compile
[INFO] +- commons-collections:commons-collections:jar:3.2.2:compile
[INFO] +- commons-codec:commons-codec:jar:1.13:compile
[INFO] +- com.google.guava:guava:jar:30.0-jre:compile
[INFO] | +- com.google.guava:failureaccess:jar:1.0.1:compile
[INFO] | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO] | +- org.checkerframework:checker-qual:jar:3.5.0:compile
[INFO] | +- com.google.errorprone:error_prone_annotations:jar:2.3.4:compile
[INFO] | \- com.google.j2objc:j2objc-annotations:jar:1.3:compile
[INFO] +- com.google.code.findbugs:jsr305:jar:3.0.1:compile
[INFO] +- joda-time:joda-time:jar:2.10.8:compile
[INFO] +- org.javassist:javassist:jar:3.28.0-GA:compile
[INFO] +- com.fasterxml.jackson.core:jackson-annotations:jar:2.14.0-rc1:compile
[INFO] +- com.fasterxml.jackson.core:jackson-core:jar:2.14.0-rc1:compile
[INFO] +- com.fasterxml.jackson.core:jackson-databind:jar:2.14.0-rc1:compile
[INFO] +- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.14.0-rc1:compile
[INFO] | \- jakarta.activation:jakarta.activation-api:jar:1.2.2:compile
[INFO] +- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:jar:2.14.0-rc1:compile
[INFO] +- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.14.0-rc1:compile
[INFO] +- com.sun.xml.bind:jaxb-impl:jar:3.0.2:runtime
[INFO] | \- com.sun.xml.bind:jaxb-core:jar:3.0.2:runtime
[INFO] | \- com.sun.activation:jakarta.activation:jar:2.0.1:runtime
[INFO] +- com.squareup.okhttp3:okhttp:jar:4.10.0:compile
[INFO] | +- com.squareup.okio:okio-jvm:jar:3.0.0:compile
[INFO] | | \- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:compile
[INFO] | \- org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:compile
[INFO] | \- org.jetbrains:annotations:jar:13.0:compile
[INFO] +- com.squareup.okhttp3:logging-interceptor:jar:4.10.0:compile
[INFO] | \- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.6.10:compile
[INFO] | \- org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.6.10:compile
[INFO] \- org.projectlombok:lombok:jar:1.18.30:provided
[INFO]
[INFO] -----------------< org.apache.hugegraph:hugegraph-pd >------------------
[INFO] Building hugegraph-pd 1.5.0 [4/41]
[INFO] from hugegraph-pd/pom.xml
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hugegraph-pd ---
[INFO] org.apache.hugegraph:hugegraph-pd:pom:1.5.0
[INFO]
[INFO] ------------------< org.apache.hugegraph:hg-pd-grpc >-------------------
[INFO] Building hg-pd-grpc 1.5.0 [5/41]
[INFO] from hugegraph-pd/hg-pd-grpc/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hg-pd-grpc ---
[INFO] org.apache.hugegraph:hg-pd-grpc:jar:1.5.0
[INFO] +- io.grpc:grpc-netty-shaded:jar:1.39.0:compile
[INFO] | +- com.google.guava:guava:jar:30.1-android:compile
[INFO] | | +- com.google.guava:failureaccess:jar:1.0.1:compile
[INFO] | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO] | | +- org.checkerframework:checker-compat-qual:jar:2.5.5:compile
[INFO] | | \- com.google.j2objc:j2objc-annotations:jar:1.3:compile
[INFO] | +- com.google.errorprone:error_prone_annotations:jar:2.4.0:compile
[INFO] | +- io.perfmark:perfmark-api:jar:0.23.0:runtime
[INFO] | \- io.grpc:grpc-core:jar:1.39.0:compile (version selected from constraint [1.39.0,1.39.0])
[INFO] | +- com.google.code.gson:gson:jar:2.8.6:runtime
[INFO] | +- com.google.android:annotations:jar:4.1.1.4:runtime
[INFO] | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.19:runtime
[INFO] +- io.grpc:grpc-protobuf:jar:1.39.0:compile
[INFO] | +- io.grpc:grpc-api:jar:1.39.0:compile
[INFO] | | \- io.grpc:grpc-context:jar:1.39.0:compile
[INFO] | +- com.google.code.findbugs:jsr305:jar:3.0.2:compile
[INFO] | +- com.google.protobuf:protobuf-java:jar:3.17.2:compile
[INFO] | +- com.google.api.grpc:proto-google-common-protos:jar:2.0.1:compile
[INFO] | \- io.grpc:grpc-protobuf-lite:jar:1.39.0:compile
[INFO] +- io.grpc:grpc-stub:jar:1.39.0:compile
[INFO] \- javax.annotation:javax.annotation-api:jar:1.3.2:compile
[INFO]
[INFO] -----------------< org.apache.hugegraph:hg-pd-common >------------------
[INFO] Building hg-pd-common 1.5.0 [6/41]
[INFO] from hugegraph-pd/hg-pd-common/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hg-pd-common ---
[INFO] org.apache.hugegraph:hg-pd-common:jar:1.5.0
[INFO] +- org.apache.hugegraph:hg-pd-grpc:jar:1.5.0:compile
[INFO] | +- io.grpc:grpc-netty-shaded:jar:1.39.0:compile
[INFO] | | +- com.google.guava:guava:jar:30.1-android:compile
[INFO] | | | +- com.google.guava:failureaccess:jar:1.0.1:compile
[INFO] | | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO] | | | +- org.checkerframework:checker-compat-qual:jar:2.5.5:compile
[INFO] | | | \- com.google.j2objc:j2objc-annotations:jar:1.3:compile
[INFO] | | +- com.google.errorprone:error_prone_annotations:jar:2.4.0:compile
[INFO] | | +- io.perfmark:perfmark-api:jar:0.23.0:runtime
[INFO] | | \- io.grpc:grpc-core:jar:1.39.0:compile (version selected from constraint [1.39.0,1.39.0])
[INFO] | | +- com.google.code.gson:gson:jar:2.8.6:runtime
[INFO] | | +- com.google.android:annotations:jar:4.1.1.4:runtime
[INFO] | | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.19:runtime
[INFO] | +- io.grpc:grpc-protobuf:jar:1.39.0:compile
[INFO] | | +- io.grpc:grpc-api:jar:1.39.0:compile
[INFO] | | | \- io.grpc:grpc-context:jar:1.39.0:compile
[INFO] | | +- com.google.code.findbugs:jsr305:jar:3.0.2:compile
[INFO] | | +- com.google.protobuf:protobuf-java:jar:3.17.2:compile
[INFO] | | +- com.google.api.grpc:proto-google-common-protos:jar:2.0.1:compile
[INFO] | | \- io.grpc:grpc-protobuf-lite:jar:1.39.0:compile
[INFO] | +- io.grpc:grpc-stub:jar:1.39.0:compile
[INFO] | \- javax.annotation:javax.annotation-api:jar:1.3.2:compile
[INFO] +- org.projectlombok:lombok:jar:1.18.30:provided
[INFO] \- org.apache.commons:commons-collections4:jar:4.4:compile
[INFO]
[INFO] -----------------< org.apache.hugegraph:hg-pd-client >------------------
[INFO] Building hg-pd-client 1.5.0 [7/41]
[INFO] from hugegraph-pd/hg-pd-client/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hg-pd-client ---
[INFO] org.apache.hugegraph:hg-pd-client:jar:1.5.0
[INFO] +- org.projectlombok:lombok:jar:1.18.30:provided
[INFO] +- org.apache.logging.log4j:log4j-slf4j-impl:jar:2.17.0:compile
[INFO] | +- org.slf4j:slf4j-api:jar:1.7.25:compile
[INFO] | +- org.apache.logging.log4j:log4j-api:jar:2.17.0:compile
[INFO] | \- org.apache.logging.log4j:log4j-core:jar:2.17.0:runtime
[INFO] +- org.apache.hugegraph:hg-pd-grpc:jar:1.5.0:compile
[INFO] | +- io.grpc:grpc-netty-shaded:jar:1.39.0:compile
[INFO] | | +- com.google.guava:guava:jar:30.1-android:compile
[INFO] | | | +- com.google.guava:failureaccess:jar:1.0.1:compile
[INFO] | | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO] | | | +- org.checkerframework:checker-compat-qual:jar:2.5.5:compile
[INFO] | | | \- com.google.j2objc:j2objc-annotations:jar:1.3:compile
[INFO] | | +- com.google.errorprone:error_prone_annotations:jar:2.4.0:compile
[INFO] | | +- io.perfmark:perfmark-api:jar:0.23.0:runtime
[INFO] | | \- io.grpc:grpc-core:jar:1.39.0:compile (version selected from constraint [1.39.0,1.39.0])
[INFO] | | +- com.google.code.gson:gson:jar:2.8.6:runtime
[INFO] | | +- com.google.android:annotations:jar:4.1.1.4:runtime
[INFO] | | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.19:runtime
[INFO] | +- io.grpc:grpc-protobuf:jar:1.39.0:compile
[INFO] | | +- io.grpc:grpc-api:jar:1.39.0:compile
[INFO] | | | \- io.grpc:grpc-context:jar:1.39.0:compile
[INFO] | | +- com.google.code.findbugs:jsr305:jar:3.0.2:compile
[INFO] | | +- com.google.protobuf:protobuf-java:jar:3.17.2:compile
[INFO] | | +- com.google.api.grpc:proto-google-common-protos:jar:2.0.1:compile
[INFO] | | \- io.grpc:grpc-protobuf-lite:jar:1.39.0:compile
[INFO] | +- io.grpc:grpc-stub:jar:1.39.0:compile
[INFO] | \- javax.annotation:javax.annotation-api:jar:1.3.2:compile
[INFO] +- org.apache.hugegraph:hg-pd-common:jar:1.5.0:compile
[INFO] | \- org.apache.commons:commons-collections4:jar:4.4:compile
[INFO] +- junit:junit:jar:4.13.2:test
[INFO] | \- org.hamcrest:hamcrest-core:jar:1.3:test
[INFO] +- commons-io:commons-io:jar:2.8.0:compile
[INFO] \- org.yaml:snakeyaml:jar:1.28:test
[INFO]
[INFO] ----------------< org.apache.hugegraph:hugegraph-store >----------------
[INFO] Building hugegraph-store 1.5.0 [8/41]
[INFO] from hugegraph-store/pom.xml
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hugegraph-store ---
[INFO] org.apache.hugegraph:hugegraph-store:pom:1.5.0
[INFO]
[INFO] ----------------< org.apache.hugegraph:hg-store-common >----------------
[INFO] Building hg-store-common 1.5.0 [9/41]
[INFO] from hugegraph-store/hg-store-common/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hg-store-common ---
[INFO] org.apache.hugegraph:hg-store-common:jar:1.5.0
[INFO]
[INFO] ---------------< org.apache.hugegraph:hugegraph-server >----------------
[INFO] Building hugegraph-server 1.5.0 [10/41]
[INFO] from hugegraph-server/pom.xml
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hugegraph-server ---
[INFO] org.apache.hugegraph:hugegraph-server:pom:1.5.0
[INFO]
[INFO] ----------------< org.apache.hugegraph:hugegraph-core >-----------------
[INFO] Building hugegraph-core 1.5.0 [11/41]
[INFO] from hugegraph-server/hugegraph-core/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[WARNING] 1 problem was encountered while building the effective model for org.javassist:javassist:jar:3.21.0-GA during dependency collection step for project (use -X to see details)
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hugegraph-core ---
[INFO] org.apache.hugegraph:hugegraph-core:jar:1.5.0
[INFO] +- org.apache.hugegraph:hugegraph-common:jar:1.5.0:compile
[INFO] | +- junit:junit:jar:4.13.1:compile
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO] | +- org.apache.logging.log4j:log4j-api:jar:2.17.1:compile
[INFO] | +- org.apache.logging.log4j:log4j-core:jar:2.17.1:compile
[INFO] | +- org.apache.logging.log4j:log4j-slf4j-impl:jar:2.17.1:compile
[INFO] | +- org.glassfish:javax.json:jar:1.0:compile
[INFO] | +- commons-configuration:commons-configuration:jar:1.10:compile
[INFO] | | \- commons-logging:commons-logging:jar:1.1.1:compile
[INFO] | +- org.apache.commons:commons-configuration2:jar:2.8.0:compile
[INFO] | +- org.apache.commons:commons-lang3:jar:3.12.0:compile
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.9.4:compile
[INFO] | +- commons-io:commons-io:jar:2.7:compile
[INFO] | +- commons-collections:commons-collections:jar:3.2.2:compile
[INFO] | +- commons-codec:commons-codec:jar:1.13:compile
[INFO] | +- com.google.guava:guava:jar:30.0-jre:compile
[INFO] | | +- com.google.guava:failureaccess:jar:1.0.1:compile
[INFO] | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO] | | +- org.checkerframework:checker-qual:jar:3.5.0:compile
[INFO] | | +- com.google.errorprone:error_prone_annotations:jar:2.3.4:compile
[INFO] | | \- com.google.j2objc:j2objc-annotations:jar:1.3:compile
[INFO] | +- com.google.code.findbugs:jsr305:jar:3.0.1:compile
[INFO] | +- joda-time:joda-time:jar:2.10.8:compile
[INFO] | +- org.javassist:javassist:jar:3.21.0-GA:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.14.0-rc1:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-core:jar:2.14.0-rc1:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-databind:jar:2.14.0-rc1:compile
[INFO] | +- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.14.0-rc1:compile
[INFO] | | \- jakarta.activation:jakarta.activation-api:jar:1.2.2:compile
[INFO] | +- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:jar:2.14.0-rc1:compile
[INFO] | +- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.14.0-rc1:compile
[INFO] | +- com.sun.xml.bind:jaxb-impl:jar:3.0.2:runtime
[INFO] | | \- com.sun.xml.bind:jaxb-core:jar:3.0.2:runtime
[INFO] | | \- com.sun.activation:jakarta.activation:jar:2.0.1:runtime
[INFO] | +- com.squareup.okhttp3:okhttp:jar:4.10.0:compile
[INFO] | | +- com.squareup.okio:okio-jvm:jar:3.0.0:compile
[INFO] | | | \- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:compile
[INFO] | | \- org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:compile
[INFO] | | \- org.jetbrains:annotations:jar:13.0:compile
[INFO] | \- com.squareup.okhttp3:logging-interceptor:jar:4.10.0:compile
[INFO] | \- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.6.10:compile
[INFO] | \- org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.6.10:compile
[INFO] +- org.glassfish.jersey.core:jersey-client:jar:3.0.3:compile
[INFO] | +- jakarta.ws.rs:jakarta.ws.rs-api:jar:3.0.0:compile
[INFO] | +- org.glassfish.jersey.core:jersey-common:jar:3.0.3:compile
[INFO] | | +- jakarta.annotation:jakarta.annotation-api:jar:2.0.0:compile
[INFO] | | \- org.glassfish.hk2:osgi-resource-locator:jar:1.0.3:compile
[INFO] | \- jakarta.inject:jakarta.inject-api:jar:2.0.0:compile
[INFO] +- org.glassfish.jersey.connectors:jersey-apache-connector:jar:3.0.3:compile
[INFO] | \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] | \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile
[INFO] +- org.glassfish.jersey.inject:jersey-hk2:jar:3.0.3:compile
[INFO] | \- org.glassfish.hk2:hk2-locator:jar:3.0.1:compile
[INFO] | +- org.glassfish.hk2.external:aopalliance-repackaged:jar:3.0.1:compile
[INFO] | +- org.glassfish.hk2:hk2-api:jar:3.0.1:compile
[INFO] | \- org.glassfish.hk2:hk2-utils:jar:3.0.1:compile
[INFO] +- org.apache.tinkerpop:gremlin-core:jar:3.5.1:compile
[INFO] | +- org.apache.tinkerpop:gremlin-shaded:jar:3.5.1:compile
[INFO] | +- org.apache.commons:commons-text:jar:1.10.0:compile
[INFO] | +- org.yaml:snakeyaml:jar:1.27:compile
[INFO] | +- org.javatuples:javatuples:jar:1.2:compile
[INFO] | +- com.carrotsearch:hppc:jar:0.7.1:compile
[INFO] | +- com.jcabi:jcabi-manifests:jar:1.1:compile
[INFO] | | \- com.jcabi:jcabi-log:jar:0.14:compile
[INFO] | +- com.squareup:javapoet:jar:1.8.0:compile
[INFO] | +- net.objecthunter:exp4j:jar:0.4.8:compile
[INFO] | +- org.slf4j:slf4j-api:jar:1.7.25:compile
[INFO] | \- org.slf4j:jcl-over-slf4j:jar:1.7.25:compile
[INFO] +- org.apache.tinkerpop:gremlin-groovy:jar:3.5.1:compile
[INFO] | +- org.apache.ivy:ivy:jar:2.4.0:compile
[INFO] | +- org.codehaus.groovy:groovy:jar:indy:2.5.14:compile
[INFO] | +- org.codehaus.groovy:groovy-groovysh:jar:indy:2.5.14:compile
[INFO] | | +- org.codehaus.groovy:groovy-cli-picocli:jar:2.5.14:compile
[INFO] | | | \- info.picocli:picocli:jar:4.3.2:compile
[INFO] | | +- org.codehaus.groovy:groovy-console:jar:2.5.14:compile
[INFO] | | | +- org.codehaus.groovy:groovy-templates:jar:2.5.14:compile
[INFO] | | | | \- org.codehaus.groovy:groovy-xml:jar:2.5.14:compile
[INFO] | | | \- org.codehaus.groovy:groovy-swing:jar:2.5.14:compile
[INFO] | | \- jline:jline:jar:2.14.6:compile
[INFO] | +- org.codehaus.groovy:groovy-json:jar:indy:2.5.14:compile
[INFO] | +- org.codehaus.groovy:groovy-jsr223:jar:indy:2.5.14:compile
[INFO] | +- org.mindrot:jbcrypt:jar:0.4:compile
[INFO] | \- com.github.ben-manes.caffeine:caffeine:jar:2.3.1:compile
[INFO] +- org.apache.tinkerpop:tinkergraph-gremlin:jar:3.5.1:compile
[INFO] +- org.apache.tinkerpop:gremlin-test:jar:3.5.1:compile
[INFO] | +- org.mockito:mockito-core:jar:3.3.3:compile
[INFO] | | +- net.bytebuddy:byte-buddy:jar:1.10.5:compile
[INFO] | | +- net.bytebuddy:byte-buddy-agent:jar:1.10.5:compile
[INFO] | | \- org.objenesis:objenesis:jar:2.6:compile
[INFO] | +- org.hamcrest:hamcrest:jar:2.2:compile
[INFO] | \- org.apache.kerby:kerb-simplekdc:jar:2.0.0:compile
[INFO] | +- org.apache.kerby:kerb-client:jar:2.0.0:compile
[INFO] | | +- org.apache.kerby:kerby-config:jar:2.0.0:compile
[INFO] | | +- org.apache.kerby:kerb-core:jar:2.0.0:compile
[INFO] | | | \- org.apache.kerby:kerby-pkix:jar:2.0.0:compile
[INFO] | | | +- org.apache.kerby:kerby-asn1:jar:2.0.0:compile
[INFO] | | | \- org.apache.kerby:kerby-util:jar:2.0.0:compile
[INFO] | | +- org.apache.kerby:kerb-common:jar:2.0.0:compile
[INFO] | | | \- org.apache.kerby:kerb-crypto:jar:2.0.0:compile
[INFO] | | +- org.apache.kerby:kerb-util:jar:2.0.0:compile
[INFO] | | \- org.apache.kerby:token-provider:jar:2.0.0:compile
[INFO] | | \- com.nimbusds:nimbus-jose-jwt:jar:4.41.2:compile
[INFO] | | +- com.github.stephenc.jcip:jcip-annotations:jar:1.0-1:compile
[INFO] | | \- net.minidev:json-smart:jar:2.3:compile (version selected from constraint [1.3.1,2.3])
[INFO] | | \- net.minidev:accessors-smart:jar:1.2:compile
[INFO] | \- org.apache.kerby:kerb-admin:jar:2.0.0:compile
[INFO] | +- org.apache.kerby:kerb-server:jar:2.0.0:compile
[INFO] | | \- org.apache.kerby:kerb-identity:jar:2.0.0:compile
[INFO] | \- org.apache.kerby:kerby-xdr:jar:2.0.0:compile
[INFO] +- org.apache.tinkerpop:gremlin-driver:jar:3.5.1:compile
[INFO] | \- io.netty:netty-all:jar:4.1.61.Final:compile
[INFO] +- com.alipay.sofa:jraft-core:jar:1.3.11:compile
[INFO] | +- org.ow2.asm:asm:jar:6.0:compile
[INFO] | +- org.jctools:jctools-core:jar:2.1.1:compile
[INFO] | +- com.lmax:disruptor:jar:3.3.7:compile
[INFO] | +- com.google.protobuf:protobuf-java:jar:3.21.7:compile
[INFO] | +- commons-lang:commons-lang:jar:2.6:compile
[INFO] | +- com.alipay.sofa:bolt:jar:1.6.4:compile
[INFO] | | \- com.alipay.sofa.common:sofa-common-tools:jar:1.0.12:compile
[INFO] | +- com.alipay.sofa:hessian:jar:3.3.6:compile
[INFO] | \- io.dropwizard.metrics:metrics-core:jar:4.0.2:compile
[INFO] +- org.caffinitas.ohc:ohc-core:jar:0.7.4:compile
[INFO] +- net.java.dev.jna:jna:jar:5.12.1:compile
[INFO] +- org.eclipse.collections:eclipse-collections-api:jar:11.1.0:compile
[INFO] +- org.eclipse.collections:eclipse-collections:jar:11.1.0:compile
[INFO] +- org.apache.commons:commons-compress:jar:1.21:compile
[INFO] +- org.lz4:lz4-java:jar:1.8.0:compile
[INFO] +- org.ansj:ansj_seg:jar:5.1.6:compile
[INFO] | \- org.nlpcn:nlp-lang:jar:1.7.7:compile
[INFO] +- com.hankcs:hanlp:jar:portable-1.8.3:compile
[INFO] +- org.apache.lucene:lucene-analyzers-smartcn:jar:8.11.2:compile
[INFO] | \- org.apache.lucene:lucene-analyzers-common:jar:8.11.2:compile
[INFO] +- org.apache.lucene:lucene-core:jar:8.11.2:compile
[INFO] +- com.huaban:jieba-analysis:jar:1.0.2:compile
[INFO] +- org.lionsoul:jcseg-core:jar:2.6.2:compile
[INFO] +- com.chenlb.mmseg4j:mmseg4j-core:jar:1.10.0:compile
[INFO] +- com.janeluo:ikanalyzer:jar:2012_u6:compile
[INFO] | \- org.apache.lucene:lucene-queryparser:jar:4.7.2:compile
[INFO] | +- org.apache.lucene:lucene-queries:jar:4.7.2:compile
[INFO] | \- org.apache.lucene:lucene-sandbox:jar:4.7.2:compile
[INFO] +- it.unimi.dsi:fastutil:jar:8.5.9:compile
[INFO] +- io.jsonwebtoken:jjwt-api:jar:0.11.5:compile
[INFO] +- io.jsonwebtoken:jjwt-impl:jar:0.11.5:runtime
[INFO] +- io.jsonwebtoken:jjwt-jackson:jar:0.11.5:runtime
[INFO] +- com.google.code.gson:gson:jar:2.8.9:compile
[INFO] +- org.apache.hugegraph:hg-pd-client:jar:1.5.0:compile
[INFO] | +- org.apache.hugegraph:hg-pd-grpc:jar:1.5.0:compile
[INFO] | | \- io.grpc:grpc-netty-shaded:jar:1.39.0:compile
[INFO] | | \- io.grpc:grpc-core:jar:1.39.0:compile (version selected from constraint [1.39.0,1.39.0])
[INFO] | | +- com.google.android:annotations:jar:4.1.1.4:runtime
[INFO] | | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.19:runtime
[INFO] | \- org.apache.hugegraph:hg-pd-common:jar:1.5.0:compile
[INFO] | \- org.apache.commons:commons-collections4:jar:4.4:compile
[INFO] +- org.apache.hugegraph:hg-store-common:jar:1.5.0:compile
[INFO] \- io.etcd:jetcd-core:jar:0.5.9:compile
[INFO] +- io.etcd:jetcd-common:jar:0.5.9:compile
[INFO] +- io.grpc:grpc-netty:jar:1.47.0:compile
[INFO] | +- io.netty:netty-codec-http2:jar:4.1.72.Final:compile
[INFO] | | +- io.netty:netty-common:jar:4.1.72.Final:compile
[INFO] | | +- io.netty:netty-buffer:jar:4.1.72.Final:compile
[INFO] | | +- io.netty:netty-transport:jar:4.1.72.Final:compile
[INFO] | | | \- io.netty:netty-resolver:jar:4.1.72.Final:compile
[INFO] | | +- io.netty:netty-codec:jar:4.1.72.Final:compile
[INFO] | | +- io.netty:netty-handler:jar:4.1.72.Final:compile
[INFO] | | | \- io.netty:netty-tcnative-classes:jar:2.0.46.Final:compile
[INFO] | | \- io.netty:netty-codec-http:jar:4.1.72.Final:compile
[INFO] | +- io.netty:netty-handler-proxy:jar:4.1.72.Final:runtime
[INFO] | | \- io.netty:netty-codec-socks:jar:4.1.72.Final:runtime
[INFO] | +- io.perfmark:perfmark-api:jar:0.25.0:runtime
[INFO] | \- io.netty:netty-transport-native-unix-common:jar:4.1.72.Final:runtime
[INFO] +- io.grpc:grpc-protobuf:jar:1.39.0:compile
[INFO] | +- io.grpc:grpc-api:jar:1.39.0:compile
[INFO] | | \- io.grpc:grpc-context:jar:1.39.0:compile
[INFO] | +- com.google.api.grpc:proto-google-common-protos:jar:2.0.1:compile
[INFO] | \- io.grpc:grpc-protobuf-lite:jar:1.39.0:compile
[INFO] +- io.grpc:grpc-stub:jar:1.47.0:compile
[INFO] +- io.grpc:grpc-grpclb:jar:1.39.0:compile
[INFO] | \- com.google.protobuf:protobuf-java-util:jar:3.17.2:runtime
[INFO] +- net.jodah:failsafe:jar:2.4.1:compile
[INFO] +- javax.annotation:javax.annotation-api:jar:1.3.2:compile
[INFO] \- com.google.auto.service:auto-service-annotations:jar:1.0:compile
[INFO]
[INFO] -----------------< org.apache.hugegraph:hugegraph-rpc >-----------------
[INFO] Building hugegraph-rpc 1.5.0 [12/41]
[INFO] from hugegraph-commons/hugegraph-rpc/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[WARNING] 1 problem was encountered while building the effective model for org.javassist:javassist:jar:3.20.0-GA during dependency collection step for project (use -X to see details)
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hugegraph-rpc ---
[INFO] org.apache.hugegraph:hugegraph-rpc:jar:1.5.0
[INFO] +- org.apache.hugegraph:hugegraph-common:jar:1.5.0:compile
[INFO] | +- junit:junit:jar:4.13.1:compile
[INFO] | | \- org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO] | +- org.apache.logging.log4j:log4j-api:jar:2.18.0:compile
[INFO] | +- org.apache.logging.log4j:log4j-core:jar:2.18.0:compile
[INFO] | +- org.apache.logging.log4j:log4j-slf4j-impl:jar:2.18.0:compile
[INFO] | | \- org.slf4j:slf4j-api:jar:1.7.25:compile
[INFO] | +- org.glassfish:javax.json:jar:1.0:compile
[INFO] | +- commons-configuration:commons-configuration:jar:1.10:compile
[INFO] | | +- commons-lang:commons-lang:jar:2.6:compile
[INFO] | | \- commons-logging:commons-logging:jar:1.1.1:compile
[INFO] | +- org.apache.commons:commons-configuration2:jar:2.8.0:compile
[INFO] | | \- org.apache.commons:commons-text:jar:1.9:compile
[INFO] | +- org.apache.commons:commons-lang3:jar:3.12.0:compile
[INFO] | +- commons-beanutils:commons-beanutils:jar:1.9.4:compile
[INFO] | +- commons-io:commons-io:jar:2.7:compile
[INFO] | +- commons-collections:commons-collections:jar:3.2.2:compile
[INFO] | +- commons-codec:commons-codec:jar:1.13:compile
[INFO] | +- com.google.guava:guava:jar:30.0-jre:compile
[INFO] | | +- com.google.guava:failureaccess:jar:1.0.1:compile
[INFO] | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO] | | +- org.checkerframework:checker-qual:jar:3.5.0:compile
[INFO] | | \- com.google.j2objc:j2objc-annotations:jar:1.3:compile
[INFO] | +- com.google.code.findbugs:jsr305:jar:3.0.1:compile
[INFO] | +- joda-time:joda-time:jar:2.10.8:compile
[INFO] | +- org.javassist:javassist:jar:3.28.0-GA:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.14.0-rc1:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-core:jar:2.14.0-rc1:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-databind:jar:2.14.0-rc1:compile
[INFO] | +- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.14.0-rc1:compile
[INFO] | | \- jakarta.activation:jakarta.activation-api:jar:1.2.2:compile
[INFO] | +- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:jar:2.14.0-rc1:compile
[INFO] | +- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.14.0-rc1:compile
[INFO] | +- com.sun.xml.bind:jaxb-impl:jar:3.0.2:runtime
[INFO] | | \- com.sun.xml.bind:jaxb-core:jar:3.0.2:runtime
[INFO] | | \- com.sun.activation:jakarta.activation:jar:2.0.1:runtime
[INFO] | +- com.squareup.okhttp3:okhttp:jar:4.10.0:compile
[INFO] | | +- com.squareup.okio:okio-jvm:jar:3.0.0:compile
[INFO] | | | \- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:compile
[INFO] | | \- org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:compile
[INFO] | | \- org.jetbrains:annotations:jar:13.0:compile
[INFO] | \- com.squareup.okhttp3:logging-interceptor:jar:4.10.0:compile
[INFO] | \- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.6.10:compile
[INFO] | \- org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.6.10:compile
[INFO] +- com.lmax:disruptor:jar:3.3.7:compile
[INFO] +- com.alipay.sofa:bolt:jar:1.6.2:compile
[INFO] | +- io.netty:netty-all:jar:4.1.42.Final:compile
[INFO] | \- com.alipay.sofa.common:sofa-common-tools:jar:1.0.12:compile
[INFO] +- com.alipay.sofa:sofa-rpc-all:jar:5.7.6:compile
[INFO] | +- com.alipay.sofa:hessian:jar:3.3.7:compile
[INFO] | +- com.alipay.sofa:tracer-core:jar:3.0.8:compile
[INFO] | | +- io.opentracing:opentracing-api:jar:0.22.0:compile
[INFO] | | +- io.opentracing:opentracing-noop:jar:0.22.0:compile
[INFO] | | +- io.opentracing:opentracing-mock:jar:0.22.0:compile
[INFO] | | \- io.opentracing:opentracing-util:jar:0.22.0:compile
[INFO] | +- com.alipay.sofa.lookout:lookout-api:jar:1.4.1:compile
[INFO] | +- io.swagger:swagger-core:jar:1.5.18:compile
[INFO] | | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.9.3:compile
[INFO] | | | \- org.yaml:snakeyaml:jar:1.18:compile
[INFO] | | +- io.swagger:swagger-models:jar:1.5.18:compile
[INFO] | | | \- io.swagger:swagger-annotations:jar:1.5.18:compile
[INFO] | | \- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] | +- io.grpc:grpc-netty-shaded:jar:1.28.0:compile
[INFO] | +- io.grpc:grpc-protobuf:jar:1.28.0:compile
[INFO] | | +- com.google.protobuf:protobuf-java:jar:3.11.0:compile
[INFO] | | +- com.google.api.grpc:proto-google-common-protos:jar:1.17.0:compile
[INFO] | | \- io.grpc:grpc-protobuf-lite:jar:1.28.0:compile
[INFO] | \- io.grpc:grpc-stub:jar:1.28.0:compile
[INFO] \- io.grpc:grpc-core:jar:1.28.1:compile
[INFO] +- io.grpc:grpc-api:jar:1.28.1:compile (version selected from constraint [1.28.1,1.28.1])
[INFO] | +- io.grpc:grpc-context:jar:1.28.1:compile
[INFO] | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.18:compile
[INFO] +- com.google.code.gson:gson:jar:2.8.6:compile
[INFO] +- com.google.android:annotations:jar:4.1.1.4:compile
[INFO] +- com.google.errorprone:error_prone_annotations:jar:2.3.4:compile
[INFO] \- io.perfmark:perfmark-api:jar:0.19.0:compile
[INFO]
[INFO] -----------------< org.apache.hugegraph:hugegraph-api >-----------------
[INFO] Building hugegraph-api 1.5.0 [13/41]
[INFO] from hugegraph-server/hugegraph-api/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[WARNING] The POM for org.perfkit.sjk.parsers:sjk-jfr5:jar:0.5 is invalid, transitive dependencies (if any) will not be available: 2 problems were encountered while building the effective model for org.perfkit.sjk.parsers:sjk-jfr5:0.5
[ERROR] 'dependencies.dependency.systemPath' for com.jrockit.mc:com.jrockit.mc.common:jar must specify an absolute path but is ${jmc5.path}/plugins/com.jrockit.mc.common_${jmc5.version}.jar @
[ERROR] 'dependencies.dependency.systemPath' for com.jrockit.mc:com.jrockit.mc.flightrecorder:jar must specify an absolute path but is ${jmc5.path}/plugins/com.jrockit.mc.flightrecorder_${jmc5.version}.jar @
[WARNING] The POM for org.perfkit.sjk.parsers:sjk-jfr6:jar:0.7 is invalid, transitive dependencies (if any) will not be available: 2 problems were encountered while building the effective model for org.perfkit.sjk.parsers:sjk-jfr6:0.7
[ERROR] 'dependencies.dependency.systemPath' for com.oracle.jmc:com.oracle.jmc.common:jar must specify an absolute path but is ${jmc6.path}/plugins/com.oracle.jmc.common_${jmc6.version}.jar @
[ERROR] 'dependencies.dependency.systemPath' for com.oracle.jmc:com.oracle.jmc.flightrecorder:jar must specify an absolute path but is ${jmc6.path}/plugins/com.oracle.jmc.flightrecorder_${jmc6.version}.jar @
[WARNING] The POM for org.perfkit.sjk.parsers:sjk-nps:jar:0.9 is invalid, transitive dependencies (if any) will not be available: 3 problems were encountered while building the effective model for org.perfkit.sjk.parsers:sjk-nps:0.9
[ERROR] 'dependencies.dependency.systemPath' for jdk.org.netbeans:profiler:jar must specify an absolute path but is ${visualvm.path}/profiler/modules/org-netbeans-modules-profiler.jar @
[ERROR] 'dependencies.dependency.systemPath' for jdk.org.netbeans:lib-profiler:jar must specify an absolute path but is ${visualvm.path}/profiler/modules/org-netbeans-lib-profiler.jar @
[ERROR] 'dependencies.dependency.systemPath' for jdk.org.netbeans:lib-profiler-common:jar must specify an absolute path but is ${visualvm.path}/profiler/modules/org-netbeans-lib-profiler-common.jar @
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hugegraph-api ---
[INFO] org.apache.hugegraph:hugegraph-api:jar:1.5.0
[INFO] +- org.apache.hugegraph:hugegraph-core:jar:1.5.0:compile
[INFO] | +- org.apache.hugegraph:hugegraph-common:jar:1.5.0:compile
[INFO] | | +- junit:junit:jar:4.13.1:compile
[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO] | | +- org.apache.logging.log4j:log4j-api:jar:2.17.1:compile
[INFO] | | +- org.apache.logging.log4j:log4j-core:jar:2.17.1:compile
[INFO] | | +- org.apache.logging.log4j:log4j-slf4j-impl:jar:2.17.1:compile
[INFO] | | +- org.glassfish:javax.json:jar:1.0:compile
[INFO] | | +- commons-configuration:commons-configuration:jar:1.10:compile
[INFO] | | | \- commons-logging:commons-logging:jar:1.1.1:compile
[INFO] | | +- org.apache.commons:commons-configuration2:jar:2.8.0:compile
[INFO] | | +- org.apache.commons:commons-lang3:jar:3.12.0:compile
[INFO] | | +- commons-beanutils:commons-beanutils:jar:1.9.4:compile
[INFO] | | +- commons-io:commons-io:jar:2.7:compile
[INFO] | | +- commons-codec:commons-codec:jar:1.13:compile
[INFO] | | +- com.google.code.findbugs:jsr305:jar:3.0.1:compile
[INFO] | | +- joda-time:joda-time:jar:2.10.8:compile
[INFO] | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.14.0-rc1:compile
[INFO] | | +- com.fasterxml.jackson.core:jackson-core:jar:2.14.0-rc1:compile
[INFO] | | +- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.14.0-rc1:compile
[INFO] | | | \- jakarta.activation:jakarta.activation-api:jar:1.2.2:compile
[INFO] | | +- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:jar:2.14.0-rc1:compile
[INFO] | | +- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.14.0-rc1:compile
[INFO] | | +- com.sun.xml.bind:jaxb-impl:jar:3.0.2:runtime
[INFO] | | | \- com.sun.xml.bind:jaxb-core:jar:3.0.2:runtime
[INFO] | | | \- com.sun.activation:jakarta.activation:jar:2.0.1:compile
[INFO] | | +- com.squareup.okhttp3:okhttp:jar:4.10.0:compile
[INFO] | | | +- com.squareup.okio:okio-jvm:jar:3.0.0:compile
[INFO] | | | | \- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:compile
[INFO] | | | \- org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:compile
[INFO] | | | \- org.jetbrains:annotations:jar:13.0:compile
[INFO] | | \- com.squareup.okhttp3:logging-interceptor:jar:4.10.0:compile
[INFO] | | \- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.6.10:compile
[INFO] | | \- org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.6.10:compile
[INFO] | +- org.glassfish.jersey.core:jersey-client:jar:3.0.3:compile
[INFO] | +- org.glassfish.jersey.connectors:jersey-apache-connector:jar:3.0.3:compile
[INFO] | | \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile
[INFO] | +- org.glassfish.jersey.inject:jersey-hk2:jar:3.0.3:compile
[INFO] | | \- org.glassfish.hk2:hk2-locator:jar:3.0.1:compile
[INFO] | | +- org.glassfish.hk2.external:aopalliance-repackaged:jar:3.0.1:compile
[INFO] | | +- org.glassfish.hk2:hk2-api:jar:3.0.1:compile
[INFO] | | \- org.glassfish.hk2:hk2-utils:jar:3.0.1:compile
[INFO] | +- org.apache.tinkerpop:gremlin-core:jar:3.5.1:compile
[INFO] | | +- org.apache.tinkerpop:gremlin-shaded:jar:3.5.1:compile
[INFO] | | +- org.apache.commons:commons-text:jar:1.10.0:compile
[INFO] | | +- org.javatuples:javatuples:jar:1.2:compile
[INFO] | | +- com.carrotsearch:hppc:jar:0.7.1:compile
[INFO] | | +- com.jcabi:jcabi-manifests:jar:1.1:compile
[INFO] | | | \- com.jcabi:jcabi-log:jar:0.14:compile
[INFO] | | +- com.squareup:javapoet:jar:1.8.0:compile
[INFO] | | +- net.objecthunter:exp4j:jar:0.4.8:compile
[INFO] | | +- org.slf4j:slf4j-api:jar:1.7.25:compile
[INFO] | | \- org.slf4j:jcl-over-slf4j:jar:1.7.25:compile
[INFO] | +- org.apache.tinkerpop:gremlin-groovy:jar:3.5.1:compile
[INFO] | | +- org.apache.ivy:ivy:jar:2.4.0:compile
[INFO] | | +- org.codehaus.groovy:groovy:jar:indy:2.5.14:compile
[INFO] | | +- org.codehaus.groovy:groovy-groovysh:jar:indy:2.5.14:compile
[INFO] | | | +- org.codehaus.groovy:groovy-cli-picocli:jar:2.5.14:compile
[INFO] | | | | \- info.picocli:picocli:jar:4.3.2:compile
[INFO] | | | +- org.codehaus.groovy:groovy-console:jar:2.5.14:compile
[INFO] | | | | +- org.codehaus.groovy:groovy-templates:jar:2.5.14:compile
[INFO] | | | | | \- org.codehaus.groovy:groovy-xml:jar:2.5.14:compile
[INFO] | | | | \- org.codehaus.groovy:groovy-swing:jar:2.5.14:compile
[INFO] | | | \- jline:jline:jar:2.14.6:compile
[INFO] | | +- org.codehaus.groovy:groovy-json:jar:indy:2.5.14:compile
[INFO] | | +- org.codehaus.groovy:groovy-jsr223:jar:indy:2.5.14:compile
[INFO] | | +- org.mindrot:jbcrypt:jar:0.4:compile
[INFO] | | \- com.github.ben-manes.caffeine:caffeine:jar:2.3.1:compile
[INFO] | +- org.apache.tinkerpop:tinkergraph-gremlin:jar:3.5.1:compile
[INFO] | +- org.apache.tinkerpop:gremlin-test:jar:3.5.1:compile
[INFO] | | +- org.mockito:mockito-core:jar:3.3.3:compile
[INFO] | | | +- net.bytebuddy:byte-buddy:jar:1.10.5:compile
[INFO] | | | \- org.objenesis:objenesis:jar:2.6:compile
[INFO] | | +- org.hamcrest:hamcrest:jar:2.2:compile
[INFO] | | \- org.apache.kerby:kerb-simplekdc:jar:2.0.0:compile
[INFO] | | +- org.apache.kerby:kerb-client:jar:2.0.0:compile
[INFO] | | | +- org.apache.kerby:kerby-config:jar:2.0.0:compile
[INFO] | | | +- org.apache.kerby:kerb-core:jar:2.0.0:compile
[INFO] | | | | \- org.apache.kerby:kerby-pkix:jar:2.0.0:compile
[INFO] | | | | +- org.apache.kerby:kerby-asn1:jar:2.0.0:compile
[INFO] | | | | \- org.apache.kerby:kerby-util:jar:2.0.0:compile
[INFO] | | | +- org.apache.kerby:kerb-common:jar:2.0.0:compile
[INFO] | | | | \- org.apache.kerby:kerb-crypto:jar:2.0.0:compile
[INFO] | | | +- org.apache.kerby:kerb-util:jar:2.0.0:compile
[INFO] | | | \- org.apache.kerby:token-provider:jar:2.0.0:compile
[INFO] | | | \- com.nimbusds:nimbus-jose-jwt:jar:4.41.2:compile
[INFO] | | | +- com.github.stephenc.jcip:jcip-annotations:jar:1.0-1:compile
[INFO] | | | \- net.minidev:json-smart:jar:2.3:compile (version selected from constraint [1.3.1,2.3])
[INFO] | | | \- net.minidev:accessors-smart:jar:1.2:compile
[INFO] | | \- org.apache.kerby:kerb-admin:jar:2.0.0:compile
[INFO] | | +- org.apache.kerby:kerb-server:jar:2.0.0:compile
[INFO] | | | \- org.apache.kerby:kerb-identity:jar:2.0.0:compile
[INFO] | | \- org.apache.kerby:kerby-xdr:jar:2.0.0:compile
[INFO] | +- org.apache.tinkerpop:gremlin-driver:jar:3.5.1:compile
[INFO] | | \- io.netty:netty-all:jar:4.1.61.Final:compile
[INFO] | +- com.alipay.sofa:jraft-core:jar:1.3.11:compile
[INFO] | | +- org.ow2.asm:asm:jar:6.0:compile
[INFO] | | +- org.jctools:jctools-core:jar:2.1.1:compile
[INFO] | | +- com.google.protobuf:protobuf-java:jar:3.21.7:compile
[INFO] | | +- commons-lang:commons-lang:jar:2.6:compile
[INFO] | | +- com.alipay.sofa:bolt:jar:1.6.4:compile
[INFO] | | | \- com.alipay.sofa.common:sofa-common-tools:jar:1.0.12:compile
[INFO] | | \- com.alipay.sofa:hessian:jar:3.3.6:compile
[INFO] | +- org.caffinitas.ohc:ohc-core:jar:0.7.4:compile
[INFO] | +- net.java.dev.jna:jna:jar:5.12.1:compile
[INFO] | +- org.eclipse.collections:eclipse-collections-api:jar:11.1.0:compile
[INFO] | +- org.eclipse.collections:eclipse-collections:jar:11.1.0:compile
[INFO] | +- org.apache.commons:commons-compress:jar:1.21:compile
[INFO] | +- org.lz4:lz4-java:jar:1.8.0:compile
[INFO] | +- org.ansj:ansj_seg:jar:5.1.6:compile
[INFO] | | \- org.nlpcn:nlp-lang:jar:1.7.7:compile
[INFO] | +- com.hankcs:hanlp:jar:portable-1.8.3:compile
[INFO] | +- org.apache.lucene:lucene-analyzers-smartcn:jar:8.11.2:compile
[INFO] | | \- org.apache.lucene:lucene-analyzers-common:jar:8.11.2:compile
[INFO] | +- org.apache.lucene:lucene-core:jar:8.11.2:compile
[INFO] | +- com.huaban:jieba-analysis:jar:1.0.2:compile
[INFO] | +- org.lionsoul:jcseg-core:jar:2.6.2:compile
[INFO] | +- com.chenlb.mmseg4j:mmseg4j-core:jar:1.10.0:compile
[INFO] | +- com.janeluo:ikanalyzer:jar:2012_u6:compile
[INFO] | | \- org.apache.lucene:lucene-queryparser:jar:4.7.2:compile
[INFO] | | +- org.apache.lucene:lucene-queries:jar:4.7.2:compile
[INFO] | | \- org.apache.lucene:lucene-sandbox:jar:4.7.2:compile
[INFO] | +- it.unimi.dsi:fastutil:jar:8.5.9:compile
[INFO] | +- io.jsonwebtoken:jjwt-api:jar:0.11.5:compile
[INFO] | +- io.jsonwebtoken:jjwt-impl:jar:0.11.5:runtime
[INFO] | +- io.jsonwebtoken:jjwt-jackson:jar:0.11.5:runtime
[INFO] | +- com.google.code.gson:gson:jar:2.8.9:compile
[INFO] | +- org.apache.hugegraph:hg-pd-client:jar:1.5.0:compile
[INFO] | | +- org.apache.hugegraph:hg-pd-grpc:jar:1.5.0:compile
[INFO] | | \- org.apache.hugegraph:hg-pd-common:jar:1.5.0:compile
[INFO] | | \- org.apache.commons:commons-collections4:jar:4.4:compile
[INFO] | +- org.apache.hugegraph:hg-store-common:jar:1.5.0:compile
[INFO] | \- io.etcd:jetcd-core:jar:0.5.9:compile
[INFO] | +- io.etcd:jetcd-common:jar:0.5.9:compile
[INFO] | +- io.grpc:grpc-netty:jar:1.47.0:compile
[INFO] | | +- io.netty:netty-codec-http2:jar:4.1.72.Final:compile
[INFO] | | | +- io.netty:netty-common:jar:4.1.72.Final:compile
[INFO] | | | +- io.netty:netty-buffer:jar:4.1.72.Final:compile
[INFO] | | | +- io.netty:netty-transport:jar:4.1.72.Final:compile
[INFO] | | | | \- io.netty:netty-resolver:jar:4.1.72.Final:compile
[INFO] | | | +- io.netty:netty-codec:jar:4.1.72.Final:compile
[INFO] | | | +- io.netty:netty-handler:jar:4.1.72.Final:compile
[INFO] | | | | \- io.netty:netty-tcnative-classes:jar:2.0.46.Final:compile
[INFO] | | | \- io.netty:netty-codec-http:jar:4.1.72.Final:compile
[INFO] | | +- io.netty:netty-handler-proxy:jar:4.1.72.Final:runtime
[INFO] | | | \- io.netty:netty-codec-socks:jar:4.1.72.Final:runtime
[INFO] | | \- io.netty:netty-transport-native-unix-common:jar:4.1.72.Final:runtime
[INFO] | +- io.grpc:grpc-protobuf:jar:1.39.0:compile
[INFO] | | +- com.google.api.grpc:proto-google-common-protos:jar:2.0.1:compile
[INFO] | | \- io.grpc:grpc-protobuf-lite:jar:1.39.0:compile
[INFO] | +- io.grpc:grpc-stub:jar:1.47.0:compile
[INFO] | +- io.grpc:grpc-grpclb:jar:1.39.0:compile
[INFO] | | \- com.google.protobuf:protobuf-java-util:jar:3.17.2:runtime
[INFO] | +- net.jodah:failsafe:jar:2.4.1:compile
[INFO] | +- javax.annotation:javax.annotation-api:jar:1.3.2:compile
[INFO] | \- com.google.auto.service:auto-service-annotations:jar:1.0:compile
[INFO] +- io.grpc:grpc-netty-shaded:jar:1.47.0:compile
[INFO] | +- com.google.guava:guava:jar:31.0.1-android:compile
[INFO] | | +- com.google.guava:failureaccess:jar:1.0.1:compile
[INFO] | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO] | | +- org.checkerframework:checker-qual:jar:3.12.0:compile
[INFO] | | +- org.checkerframework:checker-compat-qual:jar:2.5.5:compile
[INFO] | | \- com.google.j2objc:j2objc-annotations:jar:1.3:compile
[INFO] | +- com.google.errorprone:error_prone_annotations:jar:2.10.0:compile
[INFO] | +- io.perfmark:perfmark-api:jar:0.25.0:runtime
[INFO] | \- io.grpc:grpc-core:jar:1.47.0:compile (version selected from constraint [1.47.0,1.47.0])
[INFO] | +- io.grpc:grpc-api:jar:1.47.0:compile (version selected from constraint [1.47.0,1.47.0])
[INFO] | | \- io.grpc:grpc-context:jar:1.47.0:compile
[INFO] | +- com.google.android:annotations:jar:4.1.1.4:runtime
[INFO] | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.19:runtime
[INFO] +- org.apache.hugegraph:hugegraph-rpc:jar:1.5.0:compile
[INFO] | +- com.lmax:disruptor:jar:3.3.7:compile
[INFO] | \- com.alipay.sofa:sofa-rpc-all:jar:5.7.6:compile
[INFO] | +- com.alipay.sofa:tracer-core:jar:3.0.8:compile
[INFO] | | +- io.opentracing:opentracing-api:jar:0.22.0:compile
[INFO] | | +- io.opentracing:opentracing-noop:jar:0.22.0:compile
[INFO] | | +- io.opentracing:opentracing-mock:jar:0.22.0:compile
[INFO] | | \- io.opentracing:opentracing-util:jar:0.22.0:compile
[INFO] | +- com.alipay.sofa.lookout:lookout-api:jar:1.4.1:compile
[INFO] | \- io.swagger:swagger-core:jar:1.5.18:compile
[INFO] | +- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.9.3:compile
[INFO] | +- io.swagger:swagger-models:jar:1.5.18:compile
[INFO] | | \- io.swagger:swagger-annotations:jar:1.5.18:compile
[INFO] | \- javax.validation:validation-api:jar:1.1.0.Final:compile
[INFO] +- org.apache.tinkerpop:gremlin-server:jar:3.5.1:compile
[INFO] | +- commons-collections:commons-collections:jar:3.2.2:compile
[INFO] | \- com.codahale.metrics:metrics-core:jar:3.0.2:compile
[INFO] +- org.glassfish.jersey.core:jersey-server:jar:3.0.3:compile
[INFO] | +- org.glassfish.jersey.core:jersey-common:jar:3.0.3:compile
[INFO] | | \- org.glassfish.hk2:osgi-resource-locator:jar:1.0.3:compile
[INFO] | +- jakarta.ws.rs:jakarta.ws.rs-api:jar:3.0.0:compile
[INFO] | +- jakarta.annotation:jakarta.annotation-api:jar:2.0.0:compile
[INFO] | +- jakarta.inject:jakarta.inject-api:jar:2.0.0:compile
[INFO] | \- jakarta.validation:jakarta.validation-api:jar:3.0.0:compile
[INFO] +- org.glassfish.jersey.containers:jersey-container-grizzly2-http:jar:3.0.3:compile
[INFO] +- org.glassfish.jersey.containers:jersey-container-grizzly2-servlet:jar:3.0.3:compile
[INFO] | +- jakarta.servlet:jakarta.servlet-api:jar:5.0.0:compile
[INFO] | \- org.glassfish.jersey.containers:jersey-container-servlet:jar:3.0.3:compile
[INFO] | \- org.glassfish.jersey.containers:jersey-container-servlet-core:jar:3.0.3:compile
[INFO] +- org.glassfish.jersey.media:jersey-media-json-jackson:jar:3.0.3:compile
[INFO] | +- org.glassfish.jersey.ext:jersey-entity-filtering:jar:3.0.3:compile
[INFO] | \- javax.xml.bind:jaxb-api:jar:2.3.1:compile
[INFO] | \- javax.activation:javax.activation-api:jar:1.2.0:compile
[INFO] +- org.glassfish.grizzly:grizzly-http:jar:3.0.1:compile
[INFO] +- org.glassfish.grizzly:grizzly-framework:jar:3.0.1:compile
[INFO] +- org.glassfish.grizzly:grizzly-http-server:jar:3.0.1:compile
[INFO] +- org.glassfish.grizzly:grizzly-http-servlet:jar:3.0.1:compile
[INFO] +- io.dropwizard.metrics:metrics-jersey3:jar:4.2.4:compile
[INFO] | +- io.dropwizard.metrics:metrics-core:jar:4.2.4:compile
[INFO] | \- io.dropwizard.metrics:metrics-annotation:jar:4.2.4:compile
[INFO] +- org.opencypher.gremlin:translation:jar:1.0.4:compile
[INFO] | +- org.opencypher.gremlin:cypher-gremlin-extensions:jar:1.0.4:compile
[INFO] | +- org.scala-lang:scala-library:jar:2.12.7:compile
[INFO] | +- org.scala-lang.modules:scala-java8-compat_2.12:jar:0.8.0:compile
[INFO] | +- com.lihaoyi:fastparse_2.12:jar:2.0.4:compile
[INFO] | | \- com.lihaoyi:sourcecode_2.12:jar:0.1.4:compile
[INFO] | \- org.opencypher:front-end-9.0:jar:9.0.20190305:compile
[INFO] | +- org.opencypher:util-9.0:jar:9.0.20190305:compile
[INFO] | +- org.opencypher:expressions-9.0:jar:9.0.20190305:compile
[INFO] | +- org.opencypher:rewriting-9.0:jar:9.0.20190305:compile
[INFO] | | \- org.opencypher:ast-9.0:jar:9.0.20190305:compile
[INFO] | +- org.opencypher:parser-9.0:jar:9.0.20190305:compile
[INFO] | +- org.scala-lang:scala-reflect:jar:2.12.7:compile
[INFO] | \- org.parboiled:parboiled-scala_2.12:jar:1.2.0:compile
[INFO] | \- org.parboiled:parboiled-core:jar:1.2.0:compile
[INFO] +- io.swagger.core.v3:swagger-jaxrs2-jakarta:jar:2.2.18:compile
[INFO] | +- io.github.classgraph:classgraph:jar:4.8.162:compile
[INFO] | +- org.javassist:javassist:jar:3.21.0-GA:compile
[INFO] | +- io.swagger.core.v3:swagger-models-jakarta:jar:2.2.18:compile
[INFO] | +- io.swagger.core.v3:swagger-annotations-jakarta:jar:2.2.18:compile
[INFO] | +- io.swagger.core.v3:swagger-integration-jakarta:jar:2.2.18:compile
[INFO] | | \- io.swagger.core.v3:swagger-core-jakarta:jar:2.2.18:compile
[INFO] | | +- jakarta.xml.bind:jakarta.xml.bind-api:jar:3.0.0:compile
[INFO] | | \- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.15.2:compile
[INFO] | +- org.yaml:snakeyaml:jar:2.2:compile
[INFO] | +- com.fasterxml.jackson.core:jackson-databind:jar:2.15.2:compile
[INFO] | \- com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider:jar:2.15.2:compile
[INFO] | +- com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-base:jar:2.15.2:compile
[INFO] | \- com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations:jar:2.15.2:compile
[INFO] +- com.taobao.arthas:arthas-agent-attach:jar:3.7.1:compile
[INFO] | +- net.bytebuddy:byte-buddy-agent:jar:1.11.6:compile
[INFO] | \- org.zeroturnaround:zt-zip:jar:1.14:compile
[INFO] +- com.taobao.arthas:arthas-packaging:jar:3.7.1:compile
[INFO] \- org.gridkit.jvmtool:sjk-core:jar:0.22:compile
[INFO] +- org.gridkit.jvmtool:sjk-cli:jar:0.22:compile
[INFO] | \- com.beust:jcommander:jar:1.30:compile
[INFO] +- org.gridkit.jvmtool:sjk-stacktrace:jar:0.22:compile
[INFO] | \- org.gridkit.jvmtool:sjk-json:jar:0.22:compile
[INFO] +- org.gridkit.jvmtool:sjk-hflame:jar:0.22:compile
[INFO] +- org.perfkit.sjk.parsers:sjk-jfr5:jar:0.5:compile
[INFO] +- org.perfkit.sjk.parsers:sjk-jfr6:jar:0.7:compile
[INFO] +- org.perfkit.sjk.parsers:sjk-jfr-standalone:jar:0.7:compile
[INFO] +- org.perfkit.sjk.parsers:sjk-nps:jar:0.9:compile
[INFO] +- org.gridkit.lab:jvm-attach-api:jar:1.5:compile
[INFO] \- org.gridkit.jvmtool:sjk-agent:jar:0.22:compile
[INFO]
[INFO] --------------< org.apache.hugegraph:hugegraph-cassandra >--------------
[INFO] Building hugegraph-cassandra 1.5.0 [14/41]
[INFO] from hugegraph-server/hugegraph-cassandra/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[WARNING] The POM for org.perfkit.sjk.parsers:sjk-nps:jar:0.5 is invalid, transitive dependencies (if any) will not be available: 3 problems were encountered while building the effective model for org.perfkit.sjk.parsers:sjk-nps:0.5
[ERROR] 'dependencies.dependency.systemPath' for jdk.org.netbeans:profiler:jar must specify an absolute path but is ${visualvm.path}/profiler/modules/org-netbeans-modules-profiler.jar @
[ERROR] 'dependencies.dependency.systemPath' for jdk.org.netbeans:lib-profiler:jar must specify an absolute path but is ${visualvm.path}/profiler/modules/org-netbeans-lib-profiler.jar @
[ERROR] 'dependencies.dependency.systemPath' for jdk.org.netbeans:lib-profiler-common:jar must specify an absolute path but is ${visualvm.path}/profiler/modules/org-netbeans-lib-profiler-common.jar @
[INFO]
[INFO] --- dependency:3.1.1:tree (default-cli) @ hugegraph-cassandra ---
[INFO] org.apache.hugegraph:hugegraph-cassandra:jar:1.5.0
[INFO] +- org.apache.hugegraph:hugegraph-core:jar:1.5.0:compile
[INFO] | +- org.apache.hugegraph:hugegraph-common:jar:1.5.0:compile
[INFO] | | +- junit:junit:jar:4.13.1:compile
[INFO] | | | \- org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO] | | +- org.apache.logging.log4j:log4j-api:jar:2.17.1:compile
[INFO] | | +- org.apache.logging.log4j:log4j-core:jar:2.17.1:compile
[INFO] | | +- org.apache.logging.log4j:log4j-slf4j-impl:jar:2.17.1:compile
[INFO] | | +- org.glassfish:javax.json:jar:1.0:compile
[INFO] | | +- commons-configuration:commons-configuration:jar:1.10:compile
[INFO] | | | \- commons-logging:commons-logging:jar:1.1.1:compile
[INFO] | | +- org.apache.commons:commons-configuration2:jar:2.8.0:compile
[INFO] | | +- commons-beanutils:commons-beanutils:jar:1.9.4:compile
[INFO] | | +- commons-io:commons-io:jar:2.7:compile
[INFO] | | +- commons-collections:commons-collections:jar:3.2.2:compile
[INFO] | | +- com.google.code.findbugs:jsr305:jar:3.0.1:compile
[INFO] | | +- joda-time:joda-time:jar:2.10.8:compile
[INFO] | | +- org.javassist:javassist:jar:3.21.0-GA:compile
[INFO] | | +- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.14.0-rc1:compile
[INFO] | | | \- jakarta.activation:jakarta.activation-api:jar:1.2.2:compile
[INFO] | | +- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:jar:2.14.0-rc1:compile
[INFO] | | +- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.14.0-rc1:compile
[INFO] | | +- com.sun.xml.bind:jaxb-impl:jar:3.0.2:runtime
[INFO] | | | \- com.sun.xml.bind:jaxb-core:jar:3.0.2:runtime
[INFO] | | | \- com.sun.activation:jakarta.activation:jar:2.0.1:runtime
[INFO] | | +- com.squareup.okhttp3:okhttp:jar:4.10.0:compile
[INFO] | | | +- com.squareup.okio:okio-jvm:jar:3.0.0:compile
[INFO] | | | | \- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.5.31:compile
[INFO] | | | \- org.jetbrains.kotlin:kotlin-stdlib:jar:1.6.20:compile
[INFO] | | | \- org.jetbrains:annotations:jar:13.0:compile
[INFO] | | \- com.squareup.okhttp3:logging-interceptor:jar:4.10.0:compile
[INFO] | | \- org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.6.10:compile
[INFO] | | \- org.jetbrains.kotlin:kotlin-stdlib-jdk7:jar:1.6.10:compile
[INFO] | +- org.glassfish.jersey.core:jersey-client:jar:3.0.3:compile
[INFO] | | +- jakarta.ws.rs:jakarta.ws.rs-api:jar:3.0.0:compile
[INFO] | | +- org.glassfish.jersey.core:jersey-common:jar:3.0.3:compile
[INFO] | | | +- jakarta.annotation:jakarta.annotation-api:jar:2.0.0:compile
[INFO] | | | \- org.glassfish.hk2:osgi-resource-locator:jar:1.0.3:compile
[INFO] | | \- jakarta.inject:jakarta.inject-api:jar:2.0.0:compile
[INFO] | +- org.glassfish.jersey.connectors:jersey-apache-connector:jar:3.0.3:compile
[INFO] | | \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
[INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile
[INFO] | +- org.glassfish.jersey.inject:jersey-hk2:jar:3.0.3:compile
[INFO] | | \- org.glassfish.hk2:hk2-locator:jar:3.0.1:compile
[INFO] | | +- org.glassfish.hk2.external:aopalliance-repackaged:jar:3.0.1:compile
[INFO] | | +- org.glassfish.hk2:hk2-api:jar:3.0.1:compile
[INFO] | | \- org.glassfish.hk2:hk2-utils:jar:3.0.1:compile
[INFO] | +- org.apache.tinkerpop:gremlin-core:jar:3.5.1:compile
[INFO] | | +- org.apache.tinkerpop:gremlin-shaded:jar:3.5.1:compile
[INFO] | | +- org.apache.commons:commons-text:jar:1.10.0:compile
[INFO] | | +- org.javatuples:javatuples:jar:1.2:compile
[INFO] | | +- com.jcabi:jcabi-manifests:jar:1.1:compile
[INFO] | | | \- com.jcabi:jcabi-log:jar:0.14:compile
[INFO] | | +- com.squareup:javapoet:jar:1.8.0:compile
[INFO] | | +- net.objecthunter:exp4j:jar:0.4.8:compile
[INFO] | | \- org.slf4j:jcl-over-slf4j:jar:1.7.25:compile
[INFO] | +- org.apache.tinkerpop:gremlin-groovy:jar:3.5.1:compile
[INFO] | | +- org.apache.ivy:ivy:jar:2.4.0:compile
[INFO] | | +- org.codehaus.groovy:groovy:jar:indy:2.5.14:compile
[INFO] | | +- org.codehaus.groovy:groovy-groovysh:jar:indy:2.5.14:compile
[INFO] | | | +- org.codehaus.groovy:groovy-cli-picocli:jar:2.5.14:compile
[INFO] | | | | \- info.picocli:picocli:jar:4.3.2:compile
[INFO] | | | +- org.codehaus.groovy:groovy-console:jar:2.5.14:compile
[INFO] | | | | +- org.codehaus.groovy:groovy-templates:jar:2.5.14:compile
[INFO] | | | | | \- org.codehaus.groovy:groovy-xml:jar:2.5.14:compile
[INFO] | | | | \- org.codehaus.groovy:groovy-swing:jar:2.5.14:compile
[INFO] | | | \- jline:jline:jar:2.14.6:compile
[INFO] | | +- org.codehaus.groovy:groovy-json:jar:indy:2.5.14:compile
[INFO] | | \- org.codehaus.groovy:groovy-jsr223:jar:indy:2.5.14:compile
[INFO] | +- org.apache.tinkerpop:tinkergraph-gremlin:jar:3.5.1:compile
[INFO] | +- org.apache.tinkerpop:gremlin-test:jar:3.5.1:compile
[INFO] | | +- org.mockito:mockito-core:jar:3.3.3:compile
[INFO] | | | +- net.bytebuddy:byte-buddy:jar:1.10.5:compile
[INFO] | | | +- net.bytebuddy:byte-buddy-agent:jar:1.10.5:compile
[INFO] | | | \- org.objenesis:objenesis:jar:2.6:compile
[INFO] | | +- org.hamcrest:hamcrest:jar:2.2:compile
[INFO] | | \- org.apache.kerby:kerb-simplekdc:jar:2.0.0:compile
[INFO] | | +- org.apache.kerby:kerb-client:jar:2.0.0:compile
[INFO] | | | +- org.apache.kerby:kerby-config:jar:2.0.0:compile
[INFO] | | | +- org.apache.kerby:kerb-core:jar:2.0.0:compile
[INFO] | | | | \- org.apache.kerby:kerby-pkix:jar:2.0.0:compile
[INFO] | | | | +- org.apache.kerby:kerby-asn1:jar:2.0.0:compile
[INFO] | | | | \- org.apache.kerby:kerby-util:jar:2.0.0:compile
[INFO] | | | +- org.apache.kerby:kerb-common:jar:2.0.0:compile
[INFO] | | | | \- org.apache.kerby:kerb-crypto:jar:2.0.0:compile
[INFO] | | | +- org.apache.kerby:kerb-util:jar:2.0.0:compile
[INFO] | | | \- org.apache.kerby:token-provider:jar:2.0.0:compile
[INFO] | | | \- com.nimbusds:nimbus-jose-jwt:jar:4.41.2:compile
[INFO] | | | +- com.github.stephenc.jcip:jcip-annotations:jar:1.0-1:compile
[INFO] | | | \- net.minidev:json-smart:jar:2.3:compile (version selected from constraint [1.3.1,2.3])
[INFO] | | | \- net.minidev:accessors-smart:jar:1.2:compile
[INFO] | | \- org.apache.kerby:kerb-admin:jar:2.0.0:compile
[INFO] | | +- org.apache.kerby:kerb-server:jar:2.0.0:compile
[INFO] | | | \- org.apache.kerby:kerb-identity:jar:2.0.0:compile
[INFO] | | \- org.apache.kerby:kerby-xdr:jar:2.0.0:compile
[INFO] | +- org.apache.tinkerpop:gremlin-driver:jar:3.5.1:compile
[INFO] | +- com.alipay.sofa:jraft-core:jar:1.3.11:compile
[INFO] | | +- com.lmax:disruptor:jar:3.3.7:compile
[INFO] | | +- com.google.protobuf:protobuf-java:jar:3.21.7:compile
[INFO] | | +- commons-lang:commons-lang:jar:2.6:compile
[INFO] | | +- com.alipay.sofa:bolt:jar:1.6.4:compile
[INFO] | | | \- com.alipay.sofa.common:sofa-common-tools:jar:1.0.12:compile
[INFO] | | \- com.alipay.sofa:hessian:jar:3.3.6:compile
[INFO] | +- org.caffinitas.ohc:ohc-core:jar:0.7.4:compile
[INFO] | +- net.java.dev.jna:jna:jar:5.12.1:compile
[INFO] | +- org.eclipse.collections:eclipse-collections-api:jar:11.1.0:compile
[INFO] | +- org.eclipse.collections:eclipse-collections:jar:11.1.0:compile
[INFO] | +- org.apache.commons:commons-compress:jar:1.21:compile
[INFO] | +- org.lz4:lz4-java:jar:1.8.0:compile
[INFO] | +- org.ansj:ansj_seg:jar:5.1.6:compile
[INFO] | | \- org.nlpcn:nlp-lang:jar:1.7.7:compile
[INFO] | +- com.hankcs:hanlp:jar:portable-1.8.3:compile
[INFO] | +- org.apache.lucene:lucene-analyzers-smartcn:jar:8.11.2:compile
[INFO] | | \- org.apache.lucene:lucene-analyzers-common:jar:8.11.2:compile
[INFO] | +- org.apache.lucene:lucene-core:jar:8.11.2:compile
[INFO] | +- com.huaban:jieba-analysis:jar:1.0.2:compile
[INFO] | +- org.lionsoul:jcseg-core:jar:2.6.2:compile
[INFO] | +- com.chenlb.mmseg4j:mmseg4j-core:jar:1.10.0:compile
[INFO] | +- com.janeluo:ikanalyzer:jar:2012_u6:compile
[INFO] | | \- org.apache.lucene:lucene-queryparser:jar:4.7.2:compile
[INFO] | | +- org.apache.lucene:lucene-queries:jar:4.7.2:compile
[INFO] | | \- org.apache.lucene:lucene-sandbox:jar:4.7.2:compile
[INFO] | +- it.unimi.dsi:fastutil:jar:8.5.9:compile
[INFO] | +- io.jsonwebtoken:jjwt-api:jar:0.11.5:compile
[INFO] | +- io.jsonwebtoken:jjwt-impl:jar:0.11.5:runtime
[INFO] | +- io.jsonwebtoken:jjwt-jackson:jar:0.11.5:runtime
[INFO] | +- com.google.code.gson:gson:jar:2.8.9:compile
[INFO] | +- org.apache.hugegraph:hg-pd-client:jar:1.5.0:compile
[INFO] | | +- org.apache.hugegraph:hg-pd-grpc:jar:1.5.0:compile
[INFO] | | | \- io.grpc:grpc-netty-shaded:jar:1.39.0:compile
[INFO] | | | \- io.grpc:grpc-core:jar:1.39.0:compile (version selected from constraint [1.39.0,1.39.0])
[INFO] | | | +- com.google.android:annotations:jar:4.1.1.4:runtime
[INFO] | | | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.19:runtime
[INFO] | | \- org.apache.hugegraph:hg-pd-common:jar:1.5.0:compile
[INFO] | | \- org.apache.commons:commons-collections4:jar:4.4:compile
[INFO] | +- org.apache.hugegraph:hg-store-common:jar:1.5.0:compile
[INFO] | \- io.etcd:jetcd-core:jar:0.5.9:compile
[INFO] | +- io.etcd:jetcd-common:jar:0.5.9:compile
[INFO] | +- io.grpc:grpc-netty:jar:1.47.0:compile
[INFO] | | +- io.netty:netty-codec-http2:jar:4.1.72.Final:compile
[INFO] | | | +- io.netty:netty-common:jar:4.1.72.Final:compile
[INFO] | | | +- io.netty:netty-buffer:jar:4.1.72.Final:compile
[INFO] | | | +- io.netty:netty-transport:jar:4.1.72.Final:compile
[INFO] | | | | \- io.netty:netty-resolver:jar:4.1.72.Final:compile
[INFO] | | | +- io.netty:netty-codec:jar:4.1.72.Final:compile
[INFO] | | | +- io.netty:netty-handler:jar:4.1.72.Final:compile
[INFO] | | | | \- io.netty:netty-tcnative-classes:jar:2.0.46.Final:compile
[INFO] | | | \- io.netty:netty-codec-http:jar:4.1.72.Final:compile