-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.txt
1485 lines (1474 loc) · 223 KB
/
log.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
[1mApache Maven 3.6.3[m
Maven home: /usr/share/maven
Java version: 17.0.12, vendor: Ubuntu, runtime: /usr/lib/jvm/java-17-openjdk-amd64
Default locale: en, platform encoding: UTF-8
OS name: "linux", version: "5.15.153.1-microsoft-standard-wsl2", arch: "amd64", family: "unix"
[[1;36mDEBUG[m] Created new class realm maven.api
[[1;36mDEBUG[m] Importing foreign packages into class realm maven.api
[[1;36mDEBUG[m] Imported: javax.annotation.* < plexus.core
[[1;36mDEBUG[m] Imported: javax.annotation.security.* < plexus.core
[[1;36mDEBUG[m] Imported: javax.enterprise.inject.* < plexus.core
[[1;36mDEBUG[m] Imported: javax.enterprise.util.* < plexus.core
[[1;36mDEBUG[m] Imported: javax.inject.* < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.* < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.artifact < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.classrealm < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.cli < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.configuration < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.exception < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.execution < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.execution.scope < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.lifecycle < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.model < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.monitor < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.plugin < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.profiles < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.project < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.reporting < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.repository < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.rtinfo < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.settings < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.toolchain < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.usability < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.wagon.* < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.wagon.authentication < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.wagon.authorization < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.wagon.events < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.wagon.observers < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.wagon.proxy < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.wagon.repository < plexus.core
[[1;36mDEBUG[m] Imported: org.apache.maven.wagon.resource < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.classworlds < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.* < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.classworlds < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.component < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.configuration < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.container < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.context < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.lifecycle < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.logging < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.personality < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
[[1;36mDEBUG[m] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.* < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.artifact < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.collection < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.deployment < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.graph < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.impl < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.installation < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.internal.impl < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.metadata < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.repository < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.resolution < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.spi < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.transfer < plexus.core
[[1;36mDEBUG[m] Imported: org.eclipse.aether.version < plexus.core
[[1;36mDEBUG[m] Imported: org.fusesource.jansi.* < plexus.core
[[1;36mDEBUG[m] Imported: org.slf4j.* < plexus.core
[[1;36mDEBUG[m] Imported: org.slf4j.event.* < plexus.core
[[1;36mDEBUG[m] Imported: org.slf4j.helpers.* < plexus.core
[[1;36mDEBUG[m] Imported: org.slf4j.spi.* < plexus.core
[[1;36mDEBUG[m] Populating class realm maven.api
[[1;34mINFO[m] Error stacktraces are turned on.
[[1;36mDEBUG[m] Message scheme: color
[[1;36mDEBUG[m] Message styles: [1;36mdebug[m [1;34minfo[m [1;33mwarning[m [1;31merror[m [1;32msuccess[m [1;31mfailure[m [1mstrong[m [32mmojo[m [36mproject[m
[[1;36mDEBUG[m] Reading global settings from /usr/share/maven/conf/settings.xml
[[1;36mDEBUG[m] Reading user settings from /home/fabinatix/.m2/settings.xml
[[1;36mDEBUG[m] Reading global toolchains from /usr/share/maven/conf/toolchains.xml
[[1;36mDEBUG[m] Reading user toolchains from /home/fabinatix/.m2/toolchains.xml
[[1;36mDEBUG[m] Using local repository at /home/fabinatix/.m2/repository
[[1;36mDEBUG[m] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /home/fabinatix/.m2/repository
[[1;34mINFO[m] Scanning for projects...
[[1;36mDEBUG[m] Extension realms for project sample.camel:camel-example-spring-boot:jar:1.0.0-SNAPSHOT: (none)
[[1;36mDEBUG[m] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[[1;36mDEBUG[m] === REACTOR BUILD PLAN ================================================
[[1;36mDEBUG[m] Project: sample.camel:camel-example-spring-boot:jar:1.0.0-SNAPSHOT
[[1;36mDEBUG[m] Tasks: [clean, verify]
[[1;36mDEBUG[m] Style: Regular
[[1;36mDEBUG[m] =======================================================================
[[1;34mINFO[m]
[[1;34mINFO[m] [1m---------------< [0;36msample.camel:camel-example-spring-boot[0;1m >---------------[m
[[1;34mINFO[m] [1mBuilding Camel SB Examples :: Spring Boot 1.0.0-SNAPSHOT[m
[[1;34mINFO[m] [1m--------------------------------[ jar ]---------------------------------[m
[[1;36mDEBUG[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[[1;36mDEBUG[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[[1;36mDEBUG[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[[1;36mDEBUG[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[[1;36mDEBUG[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[[1;36mDEBUG[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[[1;36mDEBUG[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[[1;36mDEBUG[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[[1;36mDEBUG[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[[1;36mDEBUG[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[[1;36mDEBUG[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[[1;36mDEBUG[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[[1;36mDEBUG[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[[1;36mDEBUG[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[[1;36mDEBUG[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[[1;36mDEBUG[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[[1;36mDEBUG[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[[1;36mDEBUG[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[[1;36mDEBUG[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[[1;36mDEBUG[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[[1;36mDEBUG[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[[1;36mDEBUG[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[[1;36mDEBUG[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[[1;36mDEBUG[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[[1;36mDEBUG[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[[1;36mDEBUG[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[[1;36mDEBUG[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[[1;36mDEBUG[m] === PROJECT BUILD PLAN ================================================
[[1;36mDEBUG[m] Project: sample.camel:camel-example-spring-boot:1.0.0-SNAPSHOT
[[1;36mDEBUG[m] Dependencies (collect): [compile+runtime]
[[1;36mDEBUG[m] Dependencies (resolve): [compile, compile+runtime, runtime, test]
[[1;36mDEBUG[m] Repositories (dependencies): [central (https://repo.maven.apache.org/maven2, default, releases)]
[[1;36mDEBUG[m] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[[1;36mDEBUG[m] -----------------------------------------------------------------------
[[1;36mDEBUG[m] Goal: org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
[[1;36mDEBUG[m] Style: Regular
[[1;36mDEBUG[m] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<directory default-value="${project.build.directory}"/>
<excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
<failOnError default-value="true">${maven.clean.failOnError}</failOnError>
<followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<reportDirectory default-value="${project.reporting.outputDirectory}"/>
<retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
<skip default-value="false">${clean.skip}</skip>
<testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
<verbose>${clean.verbose}</verbose>
</configuration>
[[1;36mDEBUG[m] -----------------------------------------------------------------------
[[1;36mDEBUG[m] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources)
[[1;36mDEBUG[m] Style: Regular
[[1;36mDEBUG[m] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<buildFilters default-value="${project.build.filters}"/>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<escapeString>${maven.resources.escapeString}</escapeString>
<escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
<includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<overwrite default-value="false">${maven.resources.overwrite}</overwrite>
<project default-value="${project}"/>
<resources default-value="${project.resources}"/>
<session default-value="${session}"/>
<supportMultiLineFiltering default-value="false">${maven.resources.supportMultiLineFiltering}</supportMultiLineFiltering>
<useBuildFilters default-value="true"/>
<useDefaultDelimiters default-value="true"/>
</configuration>
[[1;36mDEBUG[m] -----------------------------------------------------------------------
[[1;36mDEBUG[m] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.10.1:compile (default-compile)
[[1;36mDEBUG[m] Style: Regular
[[1;36mDEBUG[m] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<basedir default-value="${basedir}"/>
<buildDirectory default-value="${project.build.directory}"/>
<compilePath default-value="${project.compileClasspathElements}"/>
<compileSourceRoots default-value="${project.compileSourceRoots}"/>
<compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>
<compilerReuseStrategy default-value="${reuseCreated}">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy>
<compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
<createMissingPackageInfoClass default-value="true">${maven.compiler.createMissingPackageInfoClass}</createMissingPackageInfoClass>
<debug default-value="true">${maven.compiler.debug}</debug>
<debugFileName default-value="javac"/>
<debuglevel>${maven.compiler.debuglevel}</debuglevel>
<enablePreview default-value="false">${maven.compiler.enablePreview}</enablePreview>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<executable>${maven.compiler.executable}</executable>
<failOnError default-value="true">${maven.compiler.failOnError}</failOnError>
<failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
<forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>
<fork default-value="false">${maven.compiler.fork}</fork>
<generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
<maxmem>${maven.compiler.maxmem}</maxmem>
<meminitial>${maven.compiler.meminitial}</meminitial>
<mojoExecution default-value="${mojoExecution}"/>
<optimize default-value="false">${maven.compiler.optimize}</optimize>
<outputDirectory default-value="${project.build.outputDirectory}"/>
<parameters default-value="false">${maven.compiler.parameters}</parameters>
<project default-value="${project}"/>
<projectArtifact default-value="${project.artifact}"/>
<release>${maven.compiler.release}</release>
<session default-value="${session}"/>
<showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
<showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
<skipMain>${maven.main.skip}</skipMain>
<skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>
<source default-value="1.7">17</source>
<staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
<target default-value="1.7">17</target>
<useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
<verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[[1;36mDEBUG[m] -----------------------------------------------------------------------
[[1;36mDEBUG[m] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:testResources (default-testResources)
[[1;36mDEBUG[m] Style: Regular
[[1;36mDEBUG[m] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<buildFilters default-value="${project.build.filters}"/>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<escapeString>${maven.resources.escapeString}</escapeString>
<escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
<includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
<outputDirectory default-value="${project.build.testOutputDirectory}"/>
<overwrite default-value="false">${maven.resources.overwrite}</overwrite>
<project default-value="${project}"/>
<resources default-value="${project.testResources}"/>
<session default-value="${session}"/>
<skip>${maven.test.skip}</skip>
<supportMultiLineFiltering default-value="false">${maven.resources.supportMultiLineFiltering}</supportMultiLineFiltering>
<useBuildFilters default-value="true"/>
<useDefaultDelimiters default-value="true"/>
</configuration>
[[1;36mDEBUG[m] -----------------------------------------------------------------------
[[1;36mDEBUG[m] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.10.1:testCompile (default-testCompile)
[[1;36mDEBUG[m] Style: Regular
[[1;36mDEBUG[m] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<basedir default-value="${basedir}"/>
<buildDirectory default-value="${project.build.directory}"/>
<compileSourceRoots default-value="${project.testCompileSourceRoots}"/>
<compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>
<compilerReuseStrategy default-value="${reuseCreated}">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy>
<compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
<createMissingPackageInfoClass default-value="true">${maven.compiler.createMissingPackageInfoClass}</createMissingPackageInfoClass>
<debug default-value="true">${maven.compiler.debug}</debug>
<debugFileName default-value="javac-test"/>
<debuglevel>${maven.compiler.debuglevel}</debuglevel>
<enablePreview default-value="false">${maven.compiler.enablePreview}</enablePreview>
<encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
<executable>${maven.compiler.executable}</executable>
<failOnError default-value="true">${maven.compiler.failOnError}</failOnError>
<failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
<forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>
<fork default-value="false">${maven.compiler.fork}</fork>
<generatedTestSourcesDirectory default-value="${project.build.directory}/generated-test-sources/test-annotations"/>
<maxmem>${maven.compiler.maxmem}</maxmem>
<meminitial>${maven.compiler.meminitial}</meminitial>
<mojoExecution default-value="${mojoExecution}"/>
<optimize default-value="false">${maven.compiler.optimize}</optimize>
<outputDirectory default-value="${project.build.testOutputDirectory}"/>
<parameters default-value="false">${maven.compiler.parameters}</parameters>
<project default-value="${project}"/>
<release>${maven.compiler.release}</release>
<session default-value="${session}"/>
<showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
<showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
<skip>${maven.test.skip}</skip>
<skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>
<source default-value="1.7">17</source>
<staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
<target default-value="1.7">17</target>
<testPath default-value="${project.testClasspathElements}"/>
<testRelease>${maven.compiler.testRelease}</testRelease>
<testSource>${maven.compiler.testSource}</testSource>
<testTarget>${maven.compiler.testTarget}</testTarget>
<useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
<verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[[1;36mDEBUG[m] -----------------------------------------------------------------------
[[1;36mDEBUG[m] Goal: org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test)
[[1;36mDEBUG[m] Style: Regular
[[1;36mDEBUG[m] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<argLine>${argLine}</argLine>
<basedir default-value="${basedir}"/>
<childDelegation default-value="false">${childDelegation}</childDelegation>
<classesDirectory default-value="${project.build.outputDirectory}"/>
<debugForkedProcess>${maven.surefire.debug}</debugForkedProcess>
<disableXmlReport default-value="false">${disableXmlReport}</disableXmlReport>
<enableAssertions default-value="true">${enableAssertions}</enableAssertions>
<excludedGroups>${excludedGroups}</excludedGroups>
<failIfNoSpecifiedTests>${surefire.failIfNoSpecifiedTests}</failIfNoSpecifiedTests>
<failIfNoTests>${failIfNoTests}</failIfNoTests>
<forkMode default-value="once">${forkMode}</forkMode>
<forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
<groups>${groups}</groups>
<junitArtifactName default-value="junit:junit">${junitArtifactName}</junitArtifactName>
<jvm>${jvm}</jvm>
<localRepository default-value="${localRepository}"/>
<objectFactory>${objectFactory}</objectFactory>
<parallel>${parallel}</parallel>
<parallelMavenExecution default-value="${session.parallel}"/>
<perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
<pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>
<pluginDescriptor default-value="${plugin}"/>
<printSummary default-value="true">${surefire.printSummary}</printSummary>
<projectArtifactMap>${project.artifactMap}</projectArtifactMap>
<redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
<remoteRepositories default-value="${project.pluginArtifactRepositories}"/>
<reportFormat default-value="brief">${surefire.reportFormat}</reportFormat>
<reportNameSuffix default-value="">${surefire.reportNameSuffix}</reportNameSuffix>
<reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
<runOrder default-value="filesystem"/>
<skip default-value="false">${maven.test.skip}</skip>
<skipExec>${maven.test.skip.exec}</skipExec>
<skipTests default-value="false">${skipTests}</skipTests>
<test>${test}</test>
<testClassesDirectory default-value="${project.build.testOutputDirectory}"/>
<testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
<testNGArtifactName default-value="org.testng:testng">${testNGArtifactName}</testNGArtifactName>
<testSourceDirectory default-value="${project.build.testSourceDirectory}"/>
<threadCount>${threadCount}</threadCount>
<trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
<useFile default-value="true">${surefire.useFile}</useFile>
<useManifestOnlyJar default-value="true">${surefire.useManifestOnlyJar}</useManifestOnlyJar>
<useSystemClassLoader default-value="true">${surefire.useSystemClassLoader}</useSystemClassLoader>
<useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
<workingDirectory>${basedir}</workingDirectory>
<project default-value="${project}"/>
<session default-value="${session}"/>
</configuration>
[[1;36mDEBUG[m] -----------------------------------------------------------------------
[[1;36mDEBUG[m] Goal: org.apache.maven.plugins:maven-jar-plugin:2.4:jar (default-jar)
[[1;36mDEBUG[m] Style: Regular
[[1;36mDEBUG[m] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<classesDirectory default-value="${project.build.outputDirectory}"/>
<defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
<finalName default-value="${project.build.finalName}">${jar.finalName}</finalName>
<forceCreation default-value="false">${jar.forceCreation}</forceCreation>
<outputDirectory default-value="${project.build.directory}"/>
<project default-value="${project}"/>
<session default-value="${session}"/>
<skipIfEmpty default-value="false">${jar.skipIfEmpty}</skipIfEmpty>
<useDefaultManifestFile default-value="false">${jar.useDefaultManifestFile}</useDefaultManifestFile>
</configuration>
[[1;36mDEBUG[m] -----------------------------------------------------------------------
[[1;36mDEBUG[m] Goal: org.springframework.boot:spring-boot-maven-plugin:3.3.4:repackage (default)
[[1;36mDEBUG[m] Style: Regular
[[1;36mDEBUG[m] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<attach default-value="true"/>
<excludeDevtools default-value="true">${spring-boot.repackage.excludeDevtools}</excludeDevtools>
<excludeDockerCompose default-value="true">${spring-boot.repackage.excludeDockerCompose}</excludeDockerCompose>
<excludeGroupIds default-value="">${spring-boot.excludeGroupIds}</excludeGroupIds>
<excludes>${spring-boot.excludes}</excludes>
<executable default-value="false"/>
<finalName default-value="${project.build.finalName}"/>
<includeSystemScope default-value="false"/>
<includeTools default-value="true"/>
<includes>${spring-boot.includes}</includes>
<layout>${spring-boot.repackage.layout}</layout>
<outputDirectory default-value="${project.build.directory}"/>
<outputTimestamp default-value="${project.build.outputTimestamp}"/>
<project default-value="${project}"/>
<session default-value="${session}"/>
<skip default-value="false">${spring-boot.repackage.skip}</skip>
</configuration>
[[1;36mDEBUG[m] =======================================================================
[[1;36mDEBUG[m] Dependency collection stats: {ConflictMarker.analyzeTime=2222001, ConflictMarker.markTime=763300, ConflictMarker.nodeCount=570, ConflictIdSorter.graphTime=3259602, ConflictIdSorter.topsortTime=786900, ConflictIdSorter.conflictIdCount=154, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=15659707, ConflictResolver.conflictItemCount=391, DefaultDependencyCollector.collectTime=962479206, DefaultDependencyCollector.transformTime=24588410}
[[1;36mDEBUG[m] sample.camel:camel-example-spring-boot:jar:1.0.0-SNAPSHOT
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-starter-web:jar:3.3.4:compile
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-starter:jar:3.3.4:compile (version managed from 3.3.4)
[[1;36mDEBUG[m] org.springframework.boot:spring-boot:jar:3.3.4:compile (version managed from 3.3.4)
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-autoconfigure:jar:3.3.4:compile (version managed from 3.3.4)
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-starter-logging:jar:3.3.4:compile (version managed from 3.3.4)
[[1;36mDEBUG[m] ch.qos.logback:logback-classic:jar:1.5.8:compile (version managed from 1.5.8)
[[1;36mDEBUG[m] ch.qos.logback:logback-core:jar:1.5.8:compile (version managed from 1.5.8)
[[1;36mDEBUG[m] org.apache.logging.log4j:log4j-to-slf4j:jar:2.23.1:compile (version managed from 2.23.1)
[[1;36mDEBUG[m] org.apache.logging.log4j:log4j-api:jar:2.23.1:compile (version managed from 2.23.1)
[[1;36mDEBUG[m] org.slf4j:jul-to-slf4j:jar:2.0.16:compile (version managed from 2.0.16)
[[1;36mDEBUG[m] jakarta.annotation:jakarta.annotation-api:jar:2.1.1:compile (version managed from 2.1.1)
[[1;36mDEBUG[m] org.yaml:snakeyaml:jar:2.2:compile (version managed from 2.2)
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-starter-json:jar:3.3.4:compile (version managed from 3.3.4)
[[1;36mDEBUG[m] com.fasterxml.jackson.core:jackson-databind:jar:2.17.2:compile (version managed from 2.17.2)
[[1;36mDEBUG[m] com.fasterxml.jackson.core:jackson-annotations:jar:2.17.2:compile (version managed from 2.17.2)
[[1;36mDEBUG[m] com.fasterxml.jackson.core:jackson-core:jar:2.17.2:compile (version managed from 2.17.2)
[[1;36mDEBUG[m] com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.17.2:compile (version managed from 2.17.2)
[[1;36mDEBUG[m] com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.17.2:compile (version managed from 2.17.2)
[[1;36mDEBUG[m] com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.17.2:compile (version managed from 2.17.2)
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-starter-tomcat:jar:3.3.4:compile (version managed from 3.3.4)
[[1;36mDEBUG[m] org.apache.tomcat.embed:tomcat-embed-core:jar:10.1.30:compile (version managed from 10.1.30)
[[1;36mDEBUG[m] org.apache.tomcat.embed:tomcat-embed-el:jar:10.1.30:compile (version managed from 10.1.30)
[[1;36mDEBUG[m] org.apache.tomcat.embed:tomcat-embed-websocket:jar:10.1.30:compile (version managed from 10.1.30)
[[1;36mDEBUG[m] org.springframework:spring-web:jar:6.1.13:compile (version managed from 6.1.13)
[[1;36mDEBUG[m] org.springframework:spring-beans:jar:6.1.13:compile (version managed from 6.1.13)
[[1;36mDEBUG[m] org.springframework:spring-webmvc:jar:6.1.13:compile (version managed from 6.1.13)
[[1;36mDEBUG[m] org.springframework:spring-aop:jar:6.1.13:compile (version managed from 6.1.13)
[[1;36mDEBUG[m] org.springframework:spring-context:jar:6.1.13:compile (version managed from 6.1.13)
[[1;36mDEBUG[m] org.springframework:spring-expression:jar:6.1.13:compile (version managed from 6.1.13)
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-starter-actuator:jar:3.3.4:compile
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-actuator-autoconfigure:jar:3.3.4:compile (version managed from 3.3.4)
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-actuator:jar:3.3.4:compile (version managed from 3.3.4)
[[1;36mDEBUG[m] io.micrometer:micrometer-observation:jar:1.13.4:compile (version managed from 1.13.4)
[[1;36mDEBUG[m] io.micrometer:micrometer-commons:jar:1.13.4:compile (version managed from 1.13.4)
[[1;36mDEBUG[m] io.micrometer:micrometer-jakarta9:jar:1.13.4:compile (version managed from 1.13.4)
[[1;36mDEBUG[m] io.micrometer:micrometer-core:jar:1.13.4:compile (version managed from 1.13.4)
[[1;36mDEBUG[m] org.hdrhistogram:HdrHistogram:jar:2.2.2:runtime
[[1;36mDEBUG[m] org.latencyutils:LatencyUtils:jar:2.0.3:runtime
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-starter-jdbc:jar:3.3.4:compile
[[1;36mDEBUG[m] com.zaxxer:HikariCP:jar:5.1.0:compile (version managed from 5.1.0)
[[1;36mDEBUG[m] org.slf4j:slf4j-api:jar:2.0.16:compile (version managed from 1.7.36)
[[1;36mDEBUG[m] org.springframework:spring-jdbc:jar:6.1.13:compile (version managed from 6.1.13)
[[1;36mDEBUG[m] org.springframework:spring-tx:jar:6.1.13:compile (version managed from 6.1.13)
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-spring-boot-starter:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-spring-boot:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-spring:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-management-api:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-spring-main:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-main:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-base:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-util-json:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-cloud:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-core-model:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-core-processor:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-cluster:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-base-engine:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-health:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-core-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-core-engine:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-api:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-core-reifier:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-util:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-bean-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-bean:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-browse-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-browse:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-controlbus-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-controlbus:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-dataformat-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-dataformat:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-dataset-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-dataset:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-direct-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-direct:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-file-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-file:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-language-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-language:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-log-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-log:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-mock-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-mock:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-ref-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-ref:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-rest-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-rest:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-tooling-model:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-saga-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-saga:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-scheduler-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-scheduler:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-seda-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-seda:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-stub-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-stub:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-timer-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-timer:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-validator-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-validator:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-xpath-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-xpath:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-xslt-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-xslt:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-xml-jaxp-starter:jar:4.0.0:compile (version managed from 4.0.0)
[[1;36mDEBUG[m] org.apache.camel:camel-xml-jaxp:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-xml-jaxp-util:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-xml-io-util:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel.springboot:camel-stream-starter:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-stream:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-support:jar:4.0.0:compile
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-starter-test:jar:3.3.4:test
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-test:jar:3.3.4:test (version managed from 3.3.4)
[[1;36mDEBUG[m] org.springframework.boot:spring-boot-test-autoconfigure:jar:3.3.4:test (version managed from 3.3.4)
[[1;36mDEBUG[m] com.jayway.jsonpath:json-path:jar:2.9.0:test (version managed from 2.9.0)
[[1;36mDEBUG[m] jakarta.xml.bind:jakarta.xml.bind-api:jar:4.0.2:compile (version managed from 4.0.2)
[[1;36mDEBUG[m] jakarta.activation:jakarta.activation-api:jar:2.1.3:compile (version managed from 2.1.3)
[[1;36mDEBUG[m] net.minidev:json-smart:jar:2.5.1:test (version managed from 2.5.1)
[[1;36mDEBUG[m] net.minidev:accessors-smart:jar:2.5.1:test
[[1;36mDEBUG[m] org.ow2.asm:asm:jar:9.6:test
[[1;36mDEBUG[m] org.assertj:assertj-core:jar:3.25.3:test (version managed from 3.25.3)
[[1;36mDEBUG[m] org.awaitility:awaitility:jar:4.2.2:test (version managed from 4.2.2)
[[1;36mDEBUG[m] org.hamcrest:hamcrest:jar:2.2:test (version managed from 2.2)
[[1;36mDEBUG[m] org.skyscreamer:jsonassert:jar:1.5.3:test (version managed from 1.5.3)
[[1;36mDEBUG[m] com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
[[1;36mDEBUG[m] org.springframework:spring-core:jar:6.1.13:compile (version managed from 6.1.13)
[[1;36mDEBUG[m] org.springframework:spring-jcl:jar:6.1.13:compile (version managed from 6.1.13)
[[1;36mDEBUG[m] org.springframework:spring-test:jar:6.1.13:test (version managed from 6.1.13)
[[1;36mDEBUG[m] org.xmlunit:xmlunit-core:jar:2.9.1:test (version managed from 2.9.1)
[[1;36mDEBUG[m] org.apache.camel:camel-test-spring-junit5:jar:4.0.0:test
[[1;36mDEBUG[m] org.apache.camel:camel-test-junit5:jar:4.0.0:test
[[1;36mDEBUG[m] org.apache.camel:camel-core-languages:jar:4.0.0:compile
[[1;36mDEBUG[m] org.apache.camel:camel-spring-xml:jar:4.0.0:test
[[1;36mDEBUG[m] org.apache.camel:camel-xml-jaxb:jar:4.0.0:test
[[1;36mDEBUG[m] com.sun.xml.bind:jaxb-core:jar:4.0.5:test (version managed from 4.0.3)
[[1;36mDEBUG[m] org.eclipse.angus:angus-activation:jar:2.0.2:test (version managed from 2.0.2)
[[1;36mDEBUG[m] com.sun.xml.bind:jaxb-impl:jar:4.0.5:test (version managed from 4.0.3)
[[1;36mDEBUG[m] org.apache.camel:camel-core-xml:jar:4.0.0:test
[[1;36mDEBUG[m] com.h2database:h2:jar:2.2.224:test
[[1;36mDEBUG[m] org.mockito:mockito-core:jar:4.0.0:test
[[1;36mDEBUG[m] net.bytebuddy:byte-buddy:jar:1.14.19:test (version managed from 1.11.19)
[[1;36mDEBUG[m] net.bytebuddy:byte-buddy-agent:jar:1.14.19:test (version managed from 1.11.19)
[[1;36mDEBUG[m] org.objenesis:objenesis:jar:3.2:test
[[1;36mDEBUG[m] org.mockito:mockito-junit-jupiter:jar:4.0.0:test
[[1;36mDEBUG[m] org.junit.jupiter:junit-jupiter-api:jar:5.10.3:test (version managed from 5.8.1)
[[1;36mDEBUG[m] org.opentest4j:opentest4j:jar:1.3.0:test
[[1;36mDEBUG[m] org.junit.platform:junit-platform-commons:jar:1.10.3:test (version managed from 1.10.3)
[[1;36mDEBUG[m] org.apiguardian:apiguardian-api:jar:1.1.2:test
[[1;36mDEBUG[m] org.junit.jupiter:junit-jupiter:jar:5.7.0:test
[[1;36mDEBUG[m] org.junit.jupiter:junit-jupiter-params:jar:5.10.3:test (version managed from 5.7.0)
[[1;36mDEBUG[m] org.junit.jupiter:junit-jupiter-engine:jar:5.10.3:test (version managed from 5.7.0)
[[1;36mDEBUG[m] org.junit.platform:junit-platform-engine:jar:1.10.3:test (version managed from 1.10.3)
[[1;36mDEBUG[m] org.projectlombok:lombok:jar:1.18.28:provided
[[1;36mDEBUG[m] org.postgresql:postgresql:jar:42.7.4:runtime
[[1;36mDEBUG[m] org.checkerframework:checker-qual:jar:3.42.0:runtime
[[1;34mINFO[m]
[[1;34mINFO[m] [1m--- [0;32mmaven-clean-plugin:2.5:clean[m [1m(default-clean)[m @ [36mcamel-example-spring-boot[0;1m ---[m
[[1;36mDEBUG[m] Dependency collection stats: {ConflictMarker.analyzeTime=44700, ConflictMarker.markTime=24200, ConflictMarker.nodeCount=3, ConflictIdSorter.graphTime=16700, ConflictIdSorter.topsortTime=13300, ConflictIdSorter.conflictIdCount=3, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=76800, ConflictResolver.conflictItemCount=3, DefaultDependencyCollector.collectTime=12103006, DefaultDependencyCollector.transformTime=248900}
[[1;36mDEBUG[m] org.apache.maven.plugins:maven-clean-plugin:jar:2.5
[[1;36mDEBUG[m] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
[[1;36mDEBUG[m] org.codehaus.plexus:plexus-utils:jar:3.0:compile
[[1;36mDEBUG[m] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
[[1;36mDEBUG[m] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
[[1;36mDEBUG[m] Imported: < maven.api
[[1;36mDEBUG[m] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
[[1;36mDEBUG[m] Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.5
[[1;36mDEBUG[m] Included: org.codehaus.plexus:plexus-utils:jar:3.0
[[1;36mDEBUG[m] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@2cdf8d8a]
[[1;36mDEBUG[m] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
[[1;36mDEBUG[m] (f) directory = /home/fabinatix/spring-boot-camel-learning/target
[[1;36mDEBUG[m] (f) excludeDefaultDirectories = false
[[1;36mDEBUG[m] (f) failOnError = true
[[1;36mDEBUG[m] (f) followSymLinks = false
[[1;36mDEBUG[m] (f) outputDirectory = /home/fabinatix/spring-boot-camel-learning/target/classes
[[1;36mDEBUG[m] (f) reportDirectory = /home/fabinatix/spring-boot-camel-learning/target/site
[[1;36mDEBUG[m] (f) retryOnError = true
[[1;36mDEBUG[m] (f) skip = false
[[1;36mDEBUG[m] (f) testOutputDirectory = /home/fabinatix/spring-boot-camel-learning/target/test-classes
[[1;36mDEBUG[m] -- end configuration --
[[1;34mINFO[m] Deleting /home/fabinatix/spring-boot-camel-learning/target
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/dao/AuthorDao.class
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/dao/impl/BookDaoImpl.class
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/dao/impl/AuthorDaoImpl$AuthorRowMapper.class
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/dao/impl/BookDaoImpl$BookRowMapper.class
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/dao/impl/AuthorDaoImpl.class
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/dao/impl
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/dao/BookDao.class
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/dao
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/config/DatabaseConfig.class
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/config
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/domain/Book.class
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/domain/Author.class
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/domain/Book$BookBuilder.class
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/domain/Author$AuthorBuilder.class
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/domain
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel/DatabaseApplication.class
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/classes/sample/camel
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/classes/sample
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/application.properties
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/classes/schema.sql
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/classes
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/generated-test-sources/test-annotations
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/generated-test-sources
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/surefire/surefire_05255746768140883117tmp
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/surefire/surefirebooter4251885254295068646.jar
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/surefire/surefire2693011037330997545tmp
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/surefire
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/generated-sources/annotations
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/generated-sources
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/surefire-reports/TEST-sample.camel.dao.impl.BookDaoImplTest.xml
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/surefire-reports/sample.camel.dao.impl.BookDaoImplTest.txt
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/surefire-reports
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/test-classes/sample/camel/dao/impl/BookDaoImplTest.class
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/test-classes/sample/camel/dao/impl/AuthorDaoImplIntegrationTests.class
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/test-classes/sample/camel/dao/impl/AuthorDaoImplTests.class
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/test-classes/sample/camel/dao/impl/BookDaoImplIntegrationTests.class
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/test-classes/sample/camel/dao/impl
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/test-classes/sample/camel/dao
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/test-classes/sample/camel/TestDataUtil.class
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/test-classes/sample/camel/DatabaseApplicationTests.class
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/test-classes/sample/camel
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/test-classes/sample
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/test-classes/application.properties
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/test-classes
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/maven-status/maven-compiler-plugin/testCompile
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
[[1;34mINFO[m] Deleting file /home/fabinatix/spring-boot-camel-learning/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/maven-status/maven-compiler-plugin/compile/default-compile
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/maven-status/maven-compiler-plugin/compile
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/maven-status/maven-compiler-plugin
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target/maven-status
[[1;34mINFO[m] Deleting directory /home/fabinatix/spring-boot-camel-learning/target
[[1;36mDEBUG[m] Skipping non-existing directory /home/fabinatix/spring-boot-camel-learning/target/classes
[[1;36mDEBUG[m] Skipping non-existing directory /home/fabinatix/spring-boot-camel-learning/target/test-classes
[[1;36mDEBUG[m] Skipping non-existing directory /home/fabinatix/spring-boot-camel-learning/target/site
[[1;34mINFO[m]
[[1;34mINFO[m] [1m--- [0;32mmaven-resources-plugin:2.6:resources[m [1m(default-resources)[m @ [36mcamel-example-spring-boot[0;1m ---[m
[[1;36mDEBUG[m] Dependency collection stats: {ConflictMarker.analyzeTime=103000, ConflictMarker.markTime=36500, ConflictMarker.nodeCount=77, ConflictIdSorter.graphTime=86600, ConflictIdSorter.topsortTime=31900, ConflictIdSorter.conflictIdCount=26, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=482900, ConflictResolver.conflictItemCount=74, DefaultDependencyCollector.collectTime=99528742, DefaultDependencyCollector.transformTime=776600}
[[1;36mDEBUG[m] org.apache.maven.plugins:maven-resources-plugin:jar:2.6
[[1;36mDEBUG[m] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven:maven-project:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven:maven-profile:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven:maven-core:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
[[1;36mDEBUG[m] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
[[1;36mDEBUG[m] commons-cli:commons-cli:jar:1.0:compile
[[1;36mDEBUG[m] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
[[1;36mDEBUG[m] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[[1;36mDEBUG[m] classworlds:classworlds:jar:1.1:compile
[[1;36mDEBUG[m] org.apache.maven:maven-artifact:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven:maven-settings:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven:maven-model:jar:2.0.6:compile
[[1;36mDEBUG[m] org.apache.maven:maven-monitor:jar:2.0.6:compile
[[1;36mDEBUG[m] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[[1;36mDEBUG[m] junit:junit:jar:3.8.1:compile
[[1;36mDEBUG[m] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile
[[1;36mDEBUG[m] org.apache.maven.shared:maven-filtering:jar:1.1:compile
[[1;36mDEBUG[m] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
[[1;36mDEBUG[m] org.codehaus.plexus:plexus-interpolation:jar:1.13:compile
[[1;36mDEBUG[m] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
[[1;36mDEBUG[m] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
[[1;36mDEBUG[m] Imported: < maven.api
[[1;36mDEBUG[m] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
[[1;36mDEBUG[m] Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.6
[[1;36mDEBUG[m] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
[[1;36mDEBUG[m] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
[[1;36mDEBUG[m] Included: commons-cli:commons-cli:jar:1.0
[[1;36mDEBUG[m] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
[[1;36mDEBUG[m] Included: junit:junit:jar:3.8.1
[[1;36mDEBUG[m] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5
[[1;36mDEBUG[m] Included: org.apache.maven.shared:maven-filtering:jar:1.1
[[1;36mDEBUG[m] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
[[1;36mDEBUG[m] Included: org.codehaus.plexus:plexus-interpolation:jar:1.13
[[1;36mDEBUG[m] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@2cdf8d8a]
[[1;36mDEBUG[m] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator -->
[[1;36mDEBUG[m] (f) buildFilters = []
[[1;36mDEBUG[m] (f) encoding = UTF-8
[[1;36mDEBUG[m] (f) escapeWindowsPaths = true
[[1;36mDEBUG[m] (s) includeEmptyDirs = false
[[1;36mDEBUG[m] (s) outputDirectory = /home/fabinatix/spring-boot-camel-learning/target/classes
[[1;36mDEBUG[m] (s) overwrite = false
[[1;36mDEBUG[m] (f) project = MavenProject: sample.camel:camel-example-spring-boot:1.0.0-SNAPSHOT @ /home/fabinatix/spring-boot-camel-learning/pom.xml
[[1;36mDEBUG[m] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/fabinatix/spring-boot-camel-learning/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[[1;36mDEBUG[m] (f) session = org.apache.maven.execution.MavenSession@1a87b51
[[1;36mDEBUG[m] (f) supportMultiLineFiltering = false
[[1;36mDEBUG[m] (f) useBuildFilters = true
[[1;36mDEBUG[m] (s) useDefaultDelimiters = true
[[1;36mDEBUG[m] -- end configuration --
[[1;36mDEBUG[m] properties used {env.TERM=xterm-256color, java.specification.version=17, sun.arch.data.model=64, java.vendor.url=https://ubuntu.com/, env.NAME=Fabians-Desktop-PC, sun.boot.library.path=/usr/lib/jvm/java-17-openjdk-amd64/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/usr/lib/jvm/java-17-openjdk-amd64, env.GIT_ASKPASS=/home/fabinatix/.vscode-server/bin/d78a74bcdfad14d5d3b1b782f87255d802b57511/extensions/git/dist/askpass.sh, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, java.runtime.version=17.0.12+7-Ubuntu-1ubuntu222.04, env.PATH=/home/fabinatix/.vscode-server/bin/d78a74bcdfad14d5d3b1b782f87255d802b57511/bin/remote-cli:/home/fabinatix/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wsl/lib:/mnt/c/Python312/Scripts/:/mnt/c/Python312/:/mnt/c/Program Files/Java/jdk-21.0.1/bin:/mnt/c/windows/system32:/mnt/c/windows:/mnt/c/windows/System32/Wbem:/mnt/c/windows/System32/WindowsPowerShell/v1.0/:/mnt/c/windows/System32/OpenSSH/:/mnt/c/Users/Fabian/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Python 3.11:/mnt/c/Program Files (x86)/NVIDIA Corporation/PhysX/Common:/mnt/c/Program Files/NVIDIA Corporation/NVIDIA NvDLISR:/mnt/c/Program Files/Git/cmd:/mnt/c/ProgramData/chocolatey/bin:/mnt/c/Users/Fabian/AppData/Roaming/nvm:/mnt/c/Program Files/nodejs:/mnt/c/Program Files/nodejs/:/mnt/c/Program Files/Docker/Docker/resources/bin:/mnt/c/ProgramData/apache-maven-3.9.9/bin:/mnt/c/Users/Fabian/AppData/Local/Microsoft/WindowsApps:/mnt/c/gstreamer-ivao/bin:/mnt/c/Users/Fabian/AppData/Local/Programs/Microsoft VS Code/bin:/mnt/c/MinGW/bin:/mnt/c/Users/Fabian/AppData/Roaming/nvm:/mnt/c/Program Files/nodejs:/mnt/c/Users/Fabian/AppData/Roaming/npm:/mnt/c/ProgramData/apache-maven-3.9.9/bin:/snap/bin, spring-boot-version=3.3.4, env.LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:, file.encoding=UTF-8, env._=/usr/bin/mvn, env.SHLVL=1, java.io.tmpdir=/tmp, java.version=17.0.12, env.WSL2_GUI_APPS_ENABLED=1, java.vm.specification.name=Java Virtual Machine Specification, env.WSL_DISTRO_NAME=Ubuntu-22.04, native.encoding=UTF-8, java.library.path=/usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib, java.vendor=Ubuntu, classworlds.conf=/usr/share/maven/bin/m2.conf, sun.io.unicode.encoding=UnicodeLittle, env.LANG=C.UTF-8, env.HOSTTYPE=x86_64, env.XDG_DATA_DIRS=/usr/local/share:/usr/share:/var/lib/snapd/desktop, java.vm.specification.version=17, os.name=Linux, env.DISPLAY=:0, user.home=/home/fabinatix, env.COLORTERM=truecolor, env.VSCODE_IPC_HOOK_CLI=/run/user/1000/vscode-ipc-66a382d6-e256-4dcb-a3f1-b52adb0d9476.sock, env.DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus, path.separator=:, os.version=5.15.153.1-microsoft-standard-WSL2, env.WSL_INTEROP=/run/WSL/41883_interop, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/bash, env.LESSCLOSE=/usr/bin/lesspipe %s %s, os.arch=amd64, maven.multiModuleProjectDirectory=/home/fabinatix/spring-boot-camel-learning, env.PULSE_SERVER=unix:/mnt/wslg/PulseServer, env.VSCODE_GIT_ASKPASS_NODE=/home/fabinatix/.vscode-server/bin/d78a74bcdfad14d5d3b1b782f87255d802b57511/node, env.MAVEN_PROJECTBASEDIR=/home/fabinatix/spring-boot-camel-learning, java.vm.info=mixed mode, sharing, env.USER=fabinatix, java.class.version=61.0, sun.jnu.encoding=UTF-8, maven.build.version=Apache Maven 3.6.3, maven.home=/usr/share/maven, env.VSCODE_GIT_ASKPASS_MAIN=/home/fabinatix/.vscode-server/bin/d78a74bcdfad14d5d3b1b782f87255d802b57511/extensions/git/dist/askpass-main.js, sun.stderr.encoding=UTF-8, file.separator=/, java.vm.compressedOopsMode=Zero based, line.separator=
, env.TERM_PROGRAM_VERSION=1.94.0, user.name=fabinatix, env.WSLENV=VSCODE_WSL_EXT_LOCATION/up:VSCODE_SERVER_TAR/up, env.LOGNAME=fabinatix, env.XDG_RUNTIME_DIR=/run/user/1000/, project.reporting.outputEncoding=UTF-8, library.jansi.path=/usr/share/maven/lib/jansi-native, camel-version=4.0.0, env.TERM_PROGRAM=vscode, env.OLDPWD=/home/fabinatix/spring-boot-camel-learning, env.PWD=/home/fabinatix/spring-boot-camel-learning, env.LESSOPEN=| /usr/bin/lesspipe %s, java.class.path=/usr/share/maven/boot/plexus-classworlds-2.x.jar, env.HOME=/home/fabinatix, java.vm.vendor=Ubuntu, maven.conf=/usr/share/maven/conf, sun.java.launcher=SUN_STANDARD, sun.cpu.endian=little, user.language=en, env.WAYLAND_DISPLAY=wayland-0, env.VSCODE_GIT_IPC_HANDLE=/run/user/1000/vscode-git-11c954faab.sock, env.VSCODE_GIT_ASKPASS_EXTRA_ARGS=, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= clean verify -X, java.vendor.url.bug=https://bugs.launchpad.net/ubuntu/+source/openjdk-17, user.dir=/home/fabinatix/spring-boot-camel-learning, java.vm.version=17.0.12+7-Ubuntu-1ubuntu222.04}
[[1;34mINFO[m] Using 'UTF-8' encoding to copy filtered resources.
[[1;36mDEBUG[m] resource with targetPath null
directory /home/fabinatix/spring-boot-camel-learning/src/main/resources
excludes []
includes []
[[1;36mDEBUG[m] ignoreDelta true
[[1;34mINFO[m] Copying 2 resources
[[1;36mDEBUG[m] file schema.sql has a filtered file extension
[[1;36mDEBUG[m] copy /home/fabinatix/spring-boot-camel-learning/src/main/resources/schema.sql to /home/fabinatix/spring-boot-camel-learning/target/classes/schema.sql
[[1;36mDEBUG[m] file application.properties has a filtered file extension
[[1;36mDEBUG[m] copy /home/fabinatix/spring-boot-camel-learning/src/main/resources/application.properties to /home/fabinatix/spring-boot-camel-learning/target/classes/application.properties
[[1;36mDEBUG[m] no use filter components
[[1;34mINFO[m]
[[1;34mINFO[m] [1m--- [0;32mmaven-compiler-plugin:3.10.1:compile[m [1m(default-compile)[m @ [36mcamel-example-spring-boot[0;1m ---[m
[[1;36mDEBUG[m] Dependency collection stats: {ConflictMarker.analyzeTime=61800, ConflictMarker.markTime=23100, ConflictMarker.nodeCount=17, ConflictIdSorter.graphTime=41100, ConflictIdSorter.topsortTime=21300, ConflictIdSorter.conflictIdCount=12, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1310801, ConflictResolver.conflictItemCount=17, DefaultDependencyCollector.collectTime=55032023, DefaultDependencyCollector.transformTime=1493401}
[[1;36mDEBUG[m] org.apache.maven.plugins:maven-compiler-plugin:jar:3.10.1
[[1;36mDEBUG[m] org.apache.maven.shared:maven-shared-utils:jar:3.3.4:compile
[[1;36mDEBUG[m] commons-io:commons-io:jar:2.6:compile
[[1;36mDEBUG[m] org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile
[[1;36mDEBUG[m] org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile (version managed from default)
[[1;36mDEBUG[m] org.codehaus.plexus:plexus-java:jar:1.1.1:compile
[[1;36mDEBUG[m] org.ow2.asm:asm:jar:9.2:compile
[[1;36mDEBUG[m] com.thoughtworks.qdox:qdox:jar:2.0.1:compile (version managed from default)
[[1;36mDEBUG[m] org.codehaus.plexus:plexus-compiler-api:jar:2.11.1:compile
[[1;36mDEBUG[m] org.codehaus.plexus:plexus-utils:jar:3.4.1:compile
[[1;36mDEBUG[m] org.codehaus.plexus:plexus-compiler-manager:jar:2.11.1:compile
[[1;36mDEBUG[m] org.codehaus.plexus:plexus-compiler-javac:jar:2.11.1:runtime
[[1;36mDEBUG[m] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.10.1
[[1;36mDEBUG[m] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.10.1
[[1;36mDEBUG[m] Imported: < maven.api
[[1;36mDEBUG[m] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.10.1
[[1;36mDEBUG[m] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.10.1
[[1;36mDEBUG[m] Included: org.apache.maven.shared:maven-shared-utils:jar:3.3.4
[[1;36mDEBUG[m] Included: commons-io:commons-io:jar:2.6
[[1;36mDEBUG[m] Included: org.apache.maven.shared:maven-shared-incremental:jar:1.1
[[1;36mDEBUG[m] Included: org.codehaus.plexus:plexus-component-annotations:jar:2.0.0
[[1;36mDEBUG[m] Included: org.codehaus.plexus:plexus-java:jar:1.1.1
[[1;36mDEBUG[m] Included: org.ow2.asm:asm:jar:9.2
[[1;36mDEBUG[m] Included: com.thoughtworks.qdox:qdox:jar:2.0.1
[[1;36mDEBUG[m] Included: org.codehaus.plexus:plexus-compiler-api:jar:2.11.1
[[1;36mDEBUG[m] Included: org.codehaus.plexus:plexus-utils:jar:3.4.1
[[1;36mDEBUG[m] Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.11.1
[[1;36mDEBUG[m] Included: org.codehaus.plexus:plexus-compiler-javac:jar:2.11.1
[[1;36mDEBUG[m] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.10.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.10.1, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@2cdf8d8a]
[[1;36mDEBUG[m] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.10.1:compile' with basic configurator -->
[[1;36mDEBUG[m] (f) basedir = /home/fabinatix/spring-boot-camel-learning
[[1;36mDEBUG[m] (f) buildDirectory = /home/fabinatix/spring-boot-camel-learning/target
[[1;36mDEBUG[m] (f) compilePath = [/home/fabinatix/spring-boot-camel-learning/target/classes, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.3.4/spring-boot-starter-web-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter/3.3.4/spring-boot-starter-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot/3.3.4/spring-boot-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.3.4/spring-boot-autoconfigure-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.3.4/spring-boot-starter-logging-3.3.4.jar, /home/fabinatix/.m2/repository/ch/qos/logback/logback-classic/1.5.8/logback-classic-1.5.8.jar, /home/fabinatix/.m2/repository/ch/qos/logback/logback-core/1.5.8/logback-core-1.5.8.jar, /home/fabinatix/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.23.1/log4j-to-slf4j-2.23.1.jar, /home/fabinatix/.m2/repository/org/apache/logging/log4j/log4j-api/2.23.1/log4j-api-2.23.1.jar, /home/fabinatix/.m2/repository/org/slf4j/jul-to-slf4j/2.0.16/jul-to-slf4j-2.0.16.jar, /home/fabinatix/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar, /home/fabinatix/.m2/repository/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.3.4/spring-boot-starter-json-3.3.4.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.17.2/jackson-databind-2.17.2.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.17.2/jackson-annotations-2.17.2.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.17.2/jackson-core-2.17.2.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.17.2/jackson-datatype-jdk8-2.17.2.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.17.2/jackson-datatype-jsr310-2.17.2.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.17.2/jackson-module-parameter-names-2.17.2.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.3.4/spring-boot-starter-tomcat-3.3.4.jar, /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.30/tomcat-embed-core-10.1.30.jar, /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.30/tomcat-embed-el-10.1.30.jar, /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.30/tomcat-embed-websocket-10.1.30.jar, /home/fabinatix/.m2/repository/org/springframework/spring-web/6.1.13/spring-web-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-beans/6.1.13/spring-beans-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-webmvc/6.1.13/spring-webmvc-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-aop/6.1.13/spring-aop-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-context/6.1.13/spring-context-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-expression/6.1.13/spring-expression-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.3.4/spring-boot-starter-actuator-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.3.4/spring-boot-actuator-autoconfigure-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-actuator/3.3.4/spring-boot-actuator-3.3.4.jar, /home/fabinatix/.m2/repository/io/micrometer/micrometer-observation/1.13.4/micrometer-observation-1.13.4.jar, /home/fabinatix/.m2/repository/io/micrometer/micrometer-commons/1.13.4/micrometer-commons-1.13.4.jar, /home/fabinatix/.m2/repository/io/micrometer/micrometer-jakarta9/1.13.4/micrometer-jakarta9-1.13.4.jar, /home/fabinatix/.m2/repository/io/micrometer/micrometer-core/1.13.4/micrometer-core-1.13.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-jdbc/3.3.4/spring-boot-starter-jdbc-3.3.4.jar, /home/fabinatix/.m2/repository/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar, /home/fabinatix/.m2/repository/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16.jar, /home/fabinatix/.m2/repository/org/springframework/spring-jdbc/6.1.13/spring-jdbc-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-tx/6.1.13/spring-tx-6.1.13.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-spring-boot-starter/4.0.0/camel-spring-boot-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-spring-boot/4.0.0/camel-spring-boot-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-spring/4.0.0/camel-spring-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-management-api/4.0.0/camel-management-api-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-spring-main/4.0.0/camel-spring-main-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-main/4.0.0/camel-main-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-base/4.0.0/camel-base-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-util-json/4.0.0/camel-util-json-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-cloud/4.0.0/camel-cloud-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-core-model/4.0.0/camel-core-model-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-core-processor/4.0.0/camel-core-processor-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-cluster/4.0.0/camel-cluster-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-base-engine/4.0.0/camel-base-engine-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-health/4.0.0/camel-health-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-core-starter/4.0.0/camel-core-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-core-engine/4.0.0/camel-core-engine-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-api/4.0.0/camel-api-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-core-reifier/4.0.0/camel-core-reifier-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-util/4.0.0/camel-util-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-bean-starter/4.0.0/camel-bean-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-bean/4.0.0/camel-bean-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-browse-starter/4.0.0/camel-browse-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-browse/4.0.0/camel-browse-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-controlbus-starter/4.0.0/camel-controlbus-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-controlbus/4.0.0/camel-controlbus-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-dataformat-starter/4.0.0/camel-dataformat-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-dataformat/4.0.0/camel-dataformat-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-dataset-starter/4.0.0/camel-dataset-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-dataset/4.0.0/camel-dataset-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-direct-starter/4.0.0/camel-direct-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-direct/4.0.0/camel-direct-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-file-starter/4.0.0/camel-file-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-file/4.0.0/camel-file-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-language-starter/4.0.0/camel-language-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-language/4.0.0/camel-language-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-log-starter/4.0.0/camel-log-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-log/4.0.0/camel-log-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-mock-starter/4.0.0/camel-mock-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-mock/4.0.0/camel-mock-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-ref-starter/4.0.0/camel-ref-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-ref/4.0.0/camel-ref-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-rest-starter/4.0.0/camel-rest-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-rest/4.0.0/camel-rest-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-tooling-model/4.0.0/camel-tooling-model-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-saga-starter/4.0.0/camel-saga-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-saga/4.0.0/camel-saga-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-scheduler-starter/4.0.0/camel-scheduler-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-scheduler/4.0.0/camel-scheduler-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-seda-starter/4.0.0/camel-seda-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-seda/4.0.0/camel-seda-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-stub-starter/4.0.0/camel-stub-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-stub/4.0.0/camel-stub-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-timer-starter/4.0.0/camel-timer-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-timer/4.0.0/camel-timer-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-validator-starter/4.0.0/camel-validator-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-validator/4.0.0/camel-validator-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xpath-starter/4.0.0/camel-xpath-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-xpath/4.0.0/camel-xpath-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xslt-starter/4.0.0/camel-xslt-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-xslt/4.0.0/camel-xslt-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xml-jaxp-starter/4.0.0/camel-xml-jaxp-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-xml-jaxp/4.0.0/camel-xml-jaxp-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-xml-jaxp-util/4.0.0/camel-xml-jaxp-util-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-xml-io-util/4.0.0/camel-xml-io-util-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-stream-starter/4.0.0/camel-stream-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-stream/4.0.0/camel-stream-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-support/4.0.0/camel-support-4.0.0.jar, /home/fabinatix/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar, /home/fabinatix/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar, /home/fabinatix/.m2/repository/org/springframework/spring-core/6.1.13/spring-core-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-jcl/6.1.13/spring-jcl-6.1.13.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-core-languages/4.0.0/camel-core-languages-4.0.0.jar, /home/fabinatix/.m2/repository/org/projectlombok/lombok/1.18.28/lombok-1.18.28.jar]
[[1;36mDEBUG[m] (f) compileSourceRoots = [/home/fabinatix/spring-boot-camel-learning/src/main/java]
[[1;36mDEBUG[m] (f) compilerId = javac
[[1;36mDEBUG[m] (f) createMissingPackageInfoClass = true
[[1;36mDEBUG[m] (f) debug = true
[[1;36mDEBUG[m] (f) debugFileName = javac
[[1;36mDEBUG[m] (f) enablePreview = false
[[1;36mDEBUG[m] (f) encoding = UTF-8
[[1;36mDEBUG[m] (f) failOnError = true
[[1;36mDEBUG[m] (f) failOnWarning = false
[[1;36mDEBUG[m] (f) forceJavacCompilerUse = false
[[1;36mDEBUG[m] (f) fork = false
[[1;36mDEBUG[m] (f) generatedSourcesDirectory = /home/fabinatix/spring-boot-camel-learning/target/generated-sources/annotations
[[1;36mDEBUG[m] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.10.1:compile {execution: default-compile}
[[1;36mDEBUG[m] (f) optimize = false
[[1;36mDEBUG[m] (f) outputDirectory = /home/fabinatix/spring-boot-camel-learning/target/classes
[[1;36mDEBUG[m] (f) parameters = false
[[1;36mDEBUG[m] (f) project = MavenProject: sample.camel:camel-example-spring-boot:1.0.0-SNAPSHOT @ /home/fabinatix/spring-boot-camel-learning/pom.xml
[[1;36mDEBUG[m] (f) projectArtifact = sample.camel:camel-example-spring-boot:jar:1.0.0-SNAPSHOT
[[1;36mDEBUG[m] (f) session = org.apache.maven.execution.MavenSession@1a87b51
[[1;36mDEBUG[m] (f) showDeprecation = false
[[1;36mDEBUG[m] (f) showWarnings = false
[[1;36mDEBUG[m] (f) skipMultiThreadWarning = false
[[1;36mDEBUG[m] (f) source = 17
[[1;36mDEBUG[m] (f) staleMillis = 0
[[1;36mDEBUG[m] (s) target = 17
[[1;36mDEBUG[m] (f) useIncrementalCompilation = true
[[1;36mDEBUG[m] (f) verbose = false
[[1;36mDEBUG[m] -- end configuration --
[[1;36mDEBUG[m] Using compiler 'javac'.
[[1;36mDEBUG[m] Adding /home/fabinatix/spring-boot-camel-learning/target/generated-sources/annotations to compile source roots:
/home/fabinatix/spring-boot-camel-learning/src/main/java
[[1;36mDEBUG[m] New compile source roots:
/home/fabinatix/spring-boot-camel-learning/src/main/java
/home/fabinatix/spring-boot-camel-learning/target/generated-sources/annotations
[[1;36mDEBUG[m] CompilerReuseStrategy: reuseCreated
[[1;36mDEBUG[m] useIncrementalCompilation enabled
[[1;36mDEBUG[m] Stale source detected: /home/fabinatix/spring-boot-camel-learning/src/main/java/sample/camel/dao/BookDao.java
[[1;36mDEBUG[m] Stale source detected: /home/fabinatix/spring-boot-camel-learning/src/main/java/sample/camel/dao/impl/BookDaoImpl.java
[[1;36mDEBUG[m] Stale source detected: /home/fabinatix/spring-boot-camel-learning/src/main/java/sample/camel/config/DatabaseConfig.java
[[1;36mDEBUG[m] Stale source detected: /home/fabinatix/spring-boot-camel-learning/src/main/java/sample/camel/DatabaseApplication.java
[[1;36mDEBUG[m] Stale source detected: /home/fabinatix/spring-boot-camel-learning/src/main/java/sample/camel/domain/Book.java
[[1;36mDEBUG[m] Stale source detected: /home/fabinatix/spring-boot-camel-learning/src/main/java/sample/camel/domain/Author.java
[[1;36mDEBUG[m] Stale source detected: /home/fabinatix/spring-boot-camel-learning/src/main/java/sample/camel/dao/AuthorDao.java
[[1;36mDEBUG[m] Stale source detected: /home/fabinatix/spring-boot-camel-learning/src/main/java/sample/camel/dao/impl/AuthorDaoImpl.java
[[1;34mINFO[m] Changes detected - recompiling the module!
[[1;36mDEBUG[m] Classpath:
[[1;36mDEBUG[m] /home/fabinatix/spring-boot-camel-learning/target/classes
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.3.4/spring-boot-starter-web-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter/3.3.4/spring-boot-starter-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot/3.3.4/spring-boot-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.3.4/spring-boot-autoconfigure-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.3.4/spring-boot-starter-logging-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/ch/qos/logback/logback-classic/1.5.8/logback-classic-1.5.8.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/ch/qos/logback/logback-core/1.5.8/logback-core-1.5.8.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.23.1/log4j-to-slf4j-2.23.1.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/logging/log4j/log4j-api/2.23.1/log4j-api-2.23.1.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/slf4j/jul-to-slf4j/2.0.16/jul-to-slf4j-2.0.16.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.3.4/spring-boot-starter-json-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.17.2/jackson-databind-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.17.2/jackson-annotations-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.17.2/jackson-core-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.17.2/jackson-datatype-jdk8-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.17.2/jackson-datatype-jsr310-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.17.2/jackson-module-parameter-names-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.3.4/spring-boot-starter-tomcat-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.30/tomcat-embed-core-10.1.30.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.30/tomcat-embed-el-10.1.30.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.30/tomcat-embed-websocket-10.1.30.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-web/6.1.13/spring-web-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-beans/6.1.13/spring-beans-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-webmvc/6.1.13/spring-webmvc-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-aop/6.1.13/spring-aop-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-context/6.1.13/spring-context-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-expression/6.1.13/spring-expression-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.3.4/spring-boot-starter-actuator-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.3.4/spring-boot-actuator-autoconfigure-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-actuator/3.3.4/spring-boot-actuator-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/io/micrometer/micrometer-observation/1.13.4/micrometer-observation-1.13.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/io/micrometer/micrometer-commons/1.13.4/micrometer-commons-1.13.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/io/micrometer/micrometer-jakarta9/1.13.4/micrometer-jakarta9-1.13.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/io/micrometer/micrometer-core/1.13.4/micrometer-core-1.13.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-jdbc/3.3.4/spring-boot-starter-jdbc-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-jdbc/6.1.13/spring-jdbc-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-tx/6.1.13/spring-tx-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-spring-boot-starter/4.0.0/camel-spring-boot-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-spring-boot/4.0.0/camel-spring-boot-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-spring/4.0.0/camel-spring-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-management-api/4.0.0/camel-management-api-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-spring-main/4.0.0/camel-spring-main-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-main/4.0.0/camel-main-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-base/4.0.0/camel-base-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-util-json/4.0.0/camel-util-json-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-cloud/4.0.0/camel-cloud-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-core-model/4.0.0/camel-core-model-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-core-processor/4.0.0/camel-core-processor-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-cluster/4.0.0/camel-cluster-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-base-engine/4.0.0/camel-base-engine-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-health/4.0.0/camel-health-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-core-starter/4.0.0/camel-core-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-core-engine/4.0.0/camel-core-engine-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-api/4.0.0/camel-api-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-core-reifier/4.0.0/camel-core-reifier-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-util/4.0.0/camel-util-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-bean-starter/4.0.0/camel-bean-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-bean/4.0.0/camel-bean-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-browse-starter/4.0.0/camel-browse-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-browse/4.0.0/camel-browse-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-controlbus-starter/4.0.0/camel-controlbus-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-controlbus/4.0.0/camel-controlbus-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-dataformat-starter/4.0.0/camel-dataformat-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-dataformat/4.0.0/camel-dataformat-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-dataset-starter/4.0.0/camel-dataset-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-dataset/4.0.0/camel-dataset-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-direct-starter/4.0.0/camel-direct-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-direct/4.0.0/camel-direct-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-file-starter/4.0.0/camel-file-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-file/4.0.0/camel-file-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-language-starter/4.0.0/camel-language-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-language/4.0.0/camel-language-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-log-starter/4.0.0/camel-log-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-log/4.0.0/camel-log-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-mock-starter/4.0.0/camel-mock-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-mock/4.0.0/camel-mock-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-ref-starter/4.0.0/camel-ref-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-ref/4.0.0/camel-ref-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-rest-starter/4.0.0/camel-rest-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-rest/4.0.0/camel-rest-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-tooling-model/4.0.0/camel-tooling-model-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-saga-starter/4.0.0/camel-saga-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-saga/4.0.0/camel-saga-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-scheduler-starter/4.0.0/camel-scheduler-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-scheduler/4.0.0/camel-scheduler-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-seda-starter/4.0.0/camel-seda-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-seda/4.0.0/camel-seda-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-stub-starter/4.0.0/camel-stub-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-stub/4.0.0/camel-stub-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-timer-starter/4.0.0/camel-timer-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-timer/4.0.0/camel-timer-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-validator-starter/4.0.0/camel-validator-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-validator/4.0.0/camel-validator-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xpath-starter/4.0.0/camel-xpath-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-xpath/4.0.0/camel-xpath-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xslt-starter/4.0.0/camel-xslt-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-xslt/4.0.0/camel-xslt-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xml-jaxp-starter/4.0.0/camel-xml-jaxp-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-xml-jaxp/4.0.0/camel-xml-jaxp-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-xml-jaxp-util/4.0.0/camel-xml-jaxp-util-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-xml-io-util/4.0.0/camel-xml-io-util-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-stream-starter/4.0.0/camel-stream-starter-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-stream/4.0.0/camel-stream-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-support/4.0.0/camel-support-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-core/6.1.13/spring-core-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-jcl/6.1.13/spring-jcl-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/camel-core-languages/4.0.0/camel-core-languages-4.0.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/projectlombok/lombok/1.18.28/lombok-1.18.28.jar
[[1;36mDEBUG[m] Source roots:
[[1;36mDEBUG[m] /home/fabinatix/spring-boot-camel-learning/src/main/java
[[1;36mDEBUG[m] /home/fabinatix/spring-boot-camel-learning/target/generated-sources/annotations
[[1;36mDEBUG[m] Command line options:
[[1;36mDEBUG[m] -d /home/fabinatix/spring-boot-camel-learning/target/classes -classpath /home/fabinatix/spring-boot-camel-learning/target/classes:/home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.3.4/spring-boot-starter-web-3.3.4.jar:/home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter/3.3.4/spring-boot-starter-3.3.4.jar:/home/fabinatix/.m2/repository/org/springframework/boot/spring-boot/3.3.4/spring-boot-3.3.4.jar:/home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.3.4/spring-boot-autoconfigure-3.3.4.jar:/home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.3.4/spring-boot-starter-logging-3.3.4.jar:/home/fabinatix/.m2/repository/ch/qos/logback/logback-classic/1.5.8/logback-classic-1.5.8.jar:/home/fabinatix/.m2/repository/ch/qos/logback/logback-core/1.5.8/logback-core-1.5.8.jar:/home/fabinatix/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.23.1/log4j-to-slf4j-2.23.1.jar:/home/fabinatix/.m2/repository/org/apache/logging/log4j/log4j-api/2.23.1/log4j-api-2.23.1.jar:/home/fabinatix/.m2/repository/org/slf4j/jul-to-slf4j/2.0.16/jul-to-slf4j-2.0.16.jar:/home/fabinatix/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar:/home/fabinatix/.m2/repository/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar:/home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.3.4/spring-boot-starter-json-3.3.4.jar:/home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.17.2/jackson-databind-2.17.2.jar:/home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.17.2/jackson-annotations-2.17.2.jar:/home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.17.2/jackson-core-2.17.2.jar:/home/fabinatix/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.17.2/jackson-datatype-jdk8-2.17.2.jar:/home/fabinatix/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.17.2/jackson-datatype-jsr310-2.17.2.jar:/home/fabinatix/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.17.2/jackson-module-parameter-names-2.17.2.jar:/home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.3.4/spring-boot-starter-tomcat-3.3.4.jar:/home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.30/tomcat-embed-core-10.1.30.jar:/home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.30/tomcat-embed-el-10.1.30.jar:/home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.30/tomcat-embed-websocket-10.1.30.jar:/home/fabinatix/.m2/repository/org/springframework/spring-web/6.1.13/spring-web-6.1.13.jar:/home/fabinatix/.m2/repository/org/springframework/spring-beans/6.1.13/spring-beans-6.1.13.jar:/home/fabinatix/.m2/repository/org/springframework/spring-webmvc/6.1.13/spring-webmvc-6.1.13.jar:/home/fabinatix/.m2/repository/org/springframework/spring-aop/6.1.13/spring-aop-6.1.13.jar:/home/fabinatix/.m2/repository/org/springframework/spring-context/6.1.13/spring-context-6.1.13.jar:/home/fabinatix/.m2/repository/org/springframework/spring-expression/6.1.13/spring-expression-6.1.13.jar:/home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.3.4/spring-boot-starter-actuator-3.3.4.jar:/home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.3.4/spring-boot-actuator-autoconfigure-3.3.4.jar:/home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-actuator/3.3.4/spring-boot-actuator-3.3.4.jar:/home/fabinatix/.m2/repository/io/micrometer/micrometer-observation/1.13.4/micrometer-observation-1.13.4.jar:/home/fabinatix/.m2/repository/io/micrometer/micrometer-commons/1.13.4/micrometer-commons-1.13.4.jar:/home/fabinatix/.m2/repository/io/micrometer/micrometer-jakarta9/1.13.4/micrometer-jakarta9-1.13.4.jar:/home/fabinatix/.m2/repository/io/micrometer/micrometer-core/1.13.4/micrometer-core-1.13.4.jar:/home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-jdbc/3.3.4/spring-boot-starter-jdbc-3.3.4.jar:/home/fabinatix/.m2/repository/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar:/home/fabinatix/.m2/repository/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16.jar:/home/fabinatix/.m2/repository/org/springframework/spring-jdbc/6.1.13/spring-jdbc-6.1.13.jar:/home/fabinatix/.m2/repository/org/springframework/spring-tx/6.1.13/spring-tx-6.1.13.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-spring-boot-starter/4.0.0/camel-spring-boot-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-spring-boot/4.0.0/camel-spring-boot-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-spring/4.0.0/camel-spring-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-management-api/4.0.0/camel-management-api-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-spring-main/4.0.0/camel-spring-main-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-main/4.0.0/camel-main-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-base/4.0.0/camel-base-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-util-json/4.0.0/camel-util-json-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-cloud/4.0.0/camel-cloud-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-core-model/4.0.0/camel-core-model-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-core-processor/4.0.0/camel-core-processor-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-cluster/4.0.0/camel-cluster-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-base-engine/4.0.0/camel-base-engine-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-health/4.0.0/camel-health-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-core-starter/4.0.0/camel-core-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-core-engine/4.0.0/camel-core-engine-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-api/4.0.0/camel-api-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-core-reifier/4.0.0/camel-core-reifier-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-util/4.0.0/camel-util-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-bean-starter/4.0.0/camel-bean-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-bean/4.0.0/camel-bean-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-browse-starter/4.0.0/camel-browse-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-browse/4.0.0/camel-browse-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-controlbus-starter/4.0.0/camel-controlbus-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-controlbus/4.0.0/camel-controlbus-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-dataformat-starter/4.0.0/camel-dataformat-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-dataformat/4.0.0/camel-dataformat-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-dataset-starter/4.0.0/camel-dataset-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-dataset/4.0.0/camel-dataset-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-direct-starter/4.0.0/camel-direct-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-direct/4.0.0/camel-direct-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-file-starter/4.0.0/camel-file-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-file/4.0.0/camel-file-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-language-starter/4.0.0/camel-language-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-language/4.0.0/camel-language-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-log-starter/4.0.0/camel-log-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-log/4.0.0/camel-log-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-mock-starter/4.0.0/camel-mock-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-mock/4.0.0/camel-mock-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-ref-starter/4.0.0/camel-ref-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-ref/4.0.0/camel-ref-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-rest-starter/4.0.0/camel-rest-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-rest/4.0.0/camel-rest-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-tooling-model/4.0.0/camel-tooling-model-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-saga-starter/4.0.0/camel-saga-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-saga/4.0.0/camel-saga-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-scheduler-starter/4.0.0/camel-scheduler-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-scheduler/4.0.0/camel-scheduler-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-seda-starter/4.0.0/camel-seda-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-seda/4.0.0/camel-seda-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-stub-starter/4.0.0/camel-stub-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-stub/4.0.0/camel-stub-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-timer-starter/4.0.0/camel-timer-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-timer/4.0.0/camel-timer-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-validator-starter/4.0.0/camel-validator-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-validator/4.0.0/camel-validator-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xpath-starter/4.0.0/camel-xpath-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-xpath/4.0.0/camel-xpath-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xslt-starter/4.0.0/camel-xslt-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-xslt/4.0.0/camel-xslt-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xml-jaxp-starter/4.0.0/camel-xml-jaxp-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-xml-jaxp/4.0.0/camel-xml-jaxp-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-xml-jaxp-util/4.0.0/camel-xml-jaxp-util-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-xml-io-util/4.0.0/camel-xml-io-util-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-stream-starter/4.0.0/camel-stream-starter-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-stream/4.0.0/camel-stream-4.0.0.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-support/4.0.0/camel-support-4.0.0.jar:/home/fabinatix/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar:/home/fabinatix/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar:/home/fabinatix/.m2/repository/org/springframework/spring-core/6.1.13/spring-core-6.1.13.jar:/home/fabinatix/.m2/repository/org/springframework/spring-jcl/6.1.13/spring-jcl-6.1.13.jar:/home/fabinatix/.m2/repository/org/apache/camel/camel-core-languages/4.0.0/camel-core-languages-4.0.0.jar:/home/fabinatix/.m2/repository/org/projectlombok/lombok/1.18.28/lombok-1.18.28.jar: -sourcepath /home/fabinatix/spring-boot-camel-learning/src/main/java:/home/fabinatix/spring-boot-camel-learning/target/generated-sources/annotations: -s /home/fabinatix/spring-boot-camel-learning/target/generated-sources/annotations -g -nowarn -target 17 -source 17 -encoding UTF-8
[[1;36mDEBUG[m] incrementalBuildHelper#beforeRebuildExecution
[[1;34mINFO[m] Compiling 8 source files to /home/fabinatix/spring-boot-camel-learning/target/classes
[[1;36mDEBUG[m] incrementalBuildHelper#afterRebuildExecution
[[1;34mINFO[m]
[[1;34mINFO[m] [1m--- [0;32mmaven-resources-plugin:2.6:testResources[m [1m(default-testResources)[m @ [36mcamel-example-spring-boot[0;1m ---[m
[[1;36mDEBUG[m] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@2cdf8d8a]
[[1;36mDEBUG[m] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:testResources' with basic configurator -->
[[1;36mDEBUG[m] (f) buildFilters = []
[[1;36mDEBUG[m] (f) encoding = UTF-8
[[1;36mDEBUG[m] (f) escapeWindowsPaths = true
[[1;36mDEBUG[m] (s) includeEmptyDirs = false
[[1;36mDEBUG[m] (s) outputDirectory = /home/fabinatix/spring-boot-camel-learning/target/test-classes
[[1;36mDEBUG[m] (s) overwrite = false
[[1;36mDEBUG[m] (f) project = MavenProject: sample.camel:camel-example-spring-boot:1.0.0-SNAPSHOT @ /home/fabinatix/spring-boot-camel-learning/pom.xml
[[1;36mDEBUG[m] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/fabinatix/spring-boot-camel-learning/src/test/resources, PatternSet [includes: {}, excludes: {}]}}]
[[1;36mDEBUG[m] (f) session = org.apache.maven.execution.MavenSession@1a87b51
[[1;36mDEBUG[m] (f) supportMultiLineFiltering = false
[[1;36mDEBUG[m] (f) useBuildFilters = true
[[1;36mDEBUG[m] (s) useDefaultDelimiters = true
[[1;36mDEBUG[m] -- end configuration --
[[1;36mDEBUG[m] properties used {env.TERM=xterm-256color, java.specification.version=17, sun.arch.data.model=64, java.vendor.url=https://ubuntu.com/, env.NAME=Fabians-Desktop-PC, sun.boot.library.path=/usr/lib/jvm/java-17-openjdk-amd64/lib, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/usr/lib/jvm/java-17-openjdk-amd64, env.GIT_ASKPASS=/home/fabinatix/.vscode-server/bin/d78a74bcdfad14d5d3b1b782f87255d802b57511/extensions/git/dist/askpass.sh, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, java.runtime.version=17.0.12+7-Ubuntu-1ubuntu222.04, env.PATH=/home/fabinatix/.vscode-server/bin/d78a74bcdfad14d5d3b1b782f87255d802b57511/bin/remote-cli:/home/fabinatix/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wsl/lib:/mnt/c/Python312/Scripts/:/mnt/c/Python312/:/mnt/c/Program Files/Java/jdk-21.0.1/bin:/mnt/c/windows/system32:/mnt/c/windows:/mnt/c/windows/System32/Wbem:/mnt/c/windows/System32/WindowsPowerShell/v1.0/:/mnt/c/windows/System32/OpenSSH/:/mnt/c/Users/Fabian/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Python 3.11:/mnt/c/Program Files (x86)/NVIDIA Corporation/PhysX/Common:/mnt/c/Program Files/NVIDIA Corporation/NVIDIA NvDLISR:/mnt/c/Program Files/Git/cmd:/mnt/c/ProgramData/chocolatey/bin:/mnt/c/Users/Fabian/AppData/Roaming/nvm:/mnt/c/Program Files/nodejs:/mnt/c/Program Files/nodejs/:/mnt/c/Program Files/Docker/Docker/resources/bin:/mnt/c/ProgramData/apache-maven-3.9.9/bin:/mnt/c/Users/Fabian/AppData/Local/Microsoft/WindowsApps:/mnt/c/gstreamer-ivao/bin:/mnt/c/Users/Fabian/AppData/Local/Programs/Microsoft VS Code/bin:/mnt/c/MinGW/bin:/mnt/c/Users/Fabian/AppData/Roaming/nvm:/mnt/c/Program Files/nodejs:/mnt/c/Users/Fabian/AppData/Roaming/npm:/mnt/c/ProgramData/apache-maven-3.9.9/bin:/snap/bin, spring-boot-version=3.3.4, env.LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:, file.encoding=UTF-8, env._=/usr/bin/mvn, env.SHLVL=1, java.io.tmpdir=/tmp, java.version=17.0.12, env.WSL2_GUI_APPS_ENABLED=1, java.vm.specification.name=Java Virtual Machine Specification, env.WSL_DISTRO_NAME=Ubuntu-22.04, native.encoding=UTF-8, java.library.path=/usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib, java.vendor=Ubuntu, classworlds.conf=/usr/share/maven/bin/m2.conf, sun.io.unicode.encoding=UnicodeLittle, env.LANG=C.UTF-8, env.HOSTTYPE=x86_64, env.XDG_DATA_DIRS=/usr/local/share:/usr/share:/var/lib/snapd/desktop, java.vm.specification.version=17, os.name=Linux, env.DISPLAY=:0, user.home=/home/fabinatix, env.COLORTERM=truecolor, env.VSCODE_IPC_HOOK_CLI=/run/user/1000/vscode-ipc-66a382d6-e256-4dcb-a3f1-b52adb0d9476.sock, env.DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus, path.separator=:, os.version=5.15.153.1-microsoft-standard-WSL2, env.WSL_INTEROP=/run/WSL/41883_interop, java.vm.name=OpenJDK 64-Bit Server VM, env.SHELL=/bin/bash, env.LESSCLOSE=/usr/bin/lesspipe %s %s, os.arch=amd64, maven.multiModuleProjectDirectory=/home/fabinatix/spring-boot-camel-learning, env.PULSE_SERVER=unix:/mnt/wslg/PulseServer, env.VSCODE_GIT_ASKPASS_NODE=/home/fabinatix/.vscode-server/bin/d78a74bcdfad14d5d3b1b782f87255d802b57511/node, env.MAVEN_PROJECTBASEDIR=/home/fabinatix/spring-boot-camel-learning, java.vm.info=mixed mode, sharing, env.USER=fabinatix, java.class.version=61.0, sun.jnu.encoding=UTF-8, maven.build.version=Apache Maven 3.6.3, maven.home=/usr/share/maven, env.VSCODE_GIT_ASKPASS_MAIN=/home/fabinatix/.vscode-server/bin/d78a74bcdfad14d5d3b1b782f87255d802b57511/extensions/git/dist/askpass-main.js, sun.stderr.encoding=UTF-8, file.separator=/, java.vm.compressedOopsMode=Zero based, line.separator=
, env.TERM_PROGRAM_VERSION=1.94.0, user.name=fabinatix, env.WSLENV=VSCODE_WSL_EXT_LOCATION/up:VSCODE_SERVER_TAR/up, env.LOGNAME=fabinatix, env.XDG_RUNTIME_DIR=/run/user/1000/, project.reporting.outputEncoding=UTF-8, library.jansi.path=/usr/share/maven/lib/jansi-native, camel-version=4.0.0, env.TERM_PROGRAM=vscode, env.OLDPWD=/home/fabinatix/spring-boot-camel-learning, env.PWD=/home/fabinatix/spring-boot-camel-learning, env.LESSOPEN=| /usr/bin/lesspipe %s, java.class.path=/usr/share/maven/boot/plexus-classworlds-2.x.jar, env.HOME=/home/fabinatix, java.vm.vendor=Ubuntu, maven.conf=/usr/share/maven/conf, sun.java.launcher=SUN_STANDARD, sun.cpu.endian=little, user.language=en, env.WAYLAND_DISPLAY=wayland-0, env.VSCODE_GIT_IPC_HANDLE=/run/user/1000/vscode-git-11c954faab.sock, env.VSCODE_GIT_ASKPASS_EXTRA_ARGS=, java.runtime.name=OpenJDK Runtime Environment, project.build.sourceEncoding=UTF-8, env.MAVEN_CMD_LINE_ARGS= clean verify -X, java.vendor.url.bug=https://bugs.launchpad.net/ubuntu/+source/openjdk-17, user.dir=/home/fabinatix/spring-boot-camel-learning, java.vm.version=17.0.12+7-Ubuntu-1ubuntu222.04}
[[1;34mINFO[m] Using 'UTF-8' encoding to copy filtered resources.
[[1;36mDEBUG[m] resource with targetPath null
directory /home/fabinatix/spring-boot-camel-learning/src/test/resources
excludes []
includes []
[[1;36mDEBUG[m] ignoreDelta true
[[1;34mINFO[m] Copying 1 resource
[[1;36mDEBUG[m] file application.properties has a filtered file extension
[[1;36mDEBUG[m] copy /home/fabinatix/spring-boot-camel-learning/src/test/resources/application.properties to /home/fabinatix/spring-boot-camel-learning/target/test-classes/application.properties
[[1;36mDEBUG[m] no use filter components
[[1;34mINFO[m]
[[1;34mINFO[m] [1m--- [0;32mmaven-compiler-plugin:3.10.1:testCompile[m [1m(default-testCompile)[m @ [36mcamel-example-spring-boot[0;1m ---[m
[[1;36mDEBUG[m] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.10.1:testCompile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.10.1, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@2cdf8d8a]
[[1;36mDEBUG[m] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.10.1:testCompile' with basic configurator -->
[[1;36mDEBUG[m] (f) basedir = /home/fabinatix/spring-boot-camel-learning
[[1;36mDEBUG[m] (f) buildDirectory = /home/fabinatix/spring-boot-camel-learning/target
[[1;36mDEBUG[m] (f) compileSourceRoots = [/home/fabinatix/spring-boot-camel-learning/src/test/java]
[[1;36mDEBUG[m] (f) compilerId = javac
[[1;36mDEBUG[m] (f) createMissingPackageInfoClass = true
[[1;36mDEBUG[m] (f) debug = true
[[1;36mDEBUG[m] (f) debugFileName = javac-test
[[1;36mDEBUG[m] (f) enablePreview = false
[[1;36mDEBUG[m] (f) encoding = UTF-8
[[1;36mDEBUG[m] (f) failOnError = true
[[1;36mDEBUG[m] (f) failOnWarning = false
[[1;36mDEBUG[m] (f) forceJavacCompilerUse = false
[[1;36mDEBUG[m] (f) fork = false
[[1;36mDEBUG[m] (f) generatedTestSourcesDirectory = /home/fabinatix/spring-boot-camel-learning/target/generated-test-sources/test-annotations
[[1;36mDEBUG[m] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.10.1:testCompile {execution: default-testCompile}
[[1;36mDEBUG[m] (f) optimize = false
[[1;36mDEBUG[m] (f) outputDirectory = /home/fabinatix/spring-boot-camel-learning/target/test-classes
[[1;36mDEBUG[m] (f) parameters = false
[[1;36mDEBUG[m] (f) project = MavenProject: sample.camel:camel-example-spring-boot:1.0.0-SNAPSHOT @ /home/fabinatix/spring-boot-camel-learning/pom.xml
[[1;36mDEBUG[m] (f) session = org.apache.maven.execution.MavenSession@1a87b51
[[1;36mDEBUG[m] (f) showDeprecation = false
[[1;36mDEBUG[m] (f) showWarnings = false
[[1;36mDEBUG[m] (f) skipMultiThreadWarning = false
[[1;36mDEBUG[m] (f) source = 17
[[1;36mDEBUG[m] (f) staleMillis = 0
[[1;36mDEBUG[m] (s) target = 17
[[1;36mDEBUG[m] (f) testPath = [/home/fabinatix/spring-boot-camel-learning/target/test-classes, /home/fabinatix/spring-boot-camel-learning/target/classes, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.3.4/spring-boot-starter-web-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter/3.3.4/spring-boot-starter-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot/3.3.4/spring-boot-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.3.4/spring-boot-autoconfigure-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.3.4/spring-boot-starter-logging-3.3.4.jar, /home/fabinatix/.m2/repository/ch/qos/logback/logback-classic/1.5.8/logback-classic-1.5.8.jar, /home/fabinatix/.m2/repository/ch/qos/logback/logback-core/1.5.8/logback-core-1.5.8.jar, /home/fabinatix/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.23.1/log4j-to-slf4j-2.23.1.jar, /home/fabinatix/.m2/repository/org/apache/logging/log4j/log4j-api/2.23.1/log4j-api-2.23.1.jar, /home/fabinatix/.m2/repository/org/slf4j/jul-to-slf4j/2.0.16/jul-to-slf4j-2.0.16.jar, /home/fabinatix/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar, /home/fabinatix/.m2/repository/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.3.4/spring-boot-starter-json-3.3.4.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.17.2/jackson-databind-2.17.2.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.17.2/jackson-annotations-2.17.2.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.17.2/jackson-core-2.17.2.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.17.2/jackson-datatype-jdk8-2.17.2.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.17.2/jackson-datatype-jsr310-2.17.2.jar, /home/fabinatix/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.17.2/jackson-module-parameter-names-2.17.2.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.3.4/spring-boot-starter-tomcat-3.3.4.jar, /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.30/tomcat-embed-core-10.1.30.jar, /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.30/tomcat-embed-el-10.1.30.jar, /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.30/tomcat-embed-websocket-10.1.30.jar, /home/fabinatix/.m2/repository/org/springframework/spring-web/6.1.13/spring-web-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-beans/6.1.13/spring-beans-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-webmvc/6.1.13/spring-webmvc-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-aop/6.1.13/spring-aop-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-context/6.1.13/spring-context-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-expression/6.1.13/spring-expression-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.3.4/spring-boot-starter-actuator-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.3.4/spring-boot-actuator-autoconfigure-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-actuator/3.3.4/spring-boot-actuator-3.3.4.jar, /home/fabinatix/.m2/repository/io/micrometer/micrometer-observation/1.13.4/micrometer-observation-1.13.4.jar, /home/fabinatix/.m2/repository/io/micrometer/micrometer-commons/1.13.4/micrometer-commons-1.13.4.jar, /home/fabinatix/.m2/repository/io/micrometer/micrometer-jakarta9/1.13.4/micrometer-jakarta9-1.13.4.jar, /home/fabinatix/.m2/repository/io/micrometer/micrometer-core/1.13.4/micrometer-core-1.13.4.jar, /home/fabinatix/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar, /home/fabinatix/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-jdbc/3.3.4/spring-boot-starter-jdbc-3.3.4.jar, /home/fabinatix/.m2/repository/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar, /home/fabinatix/.m2/repository/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16.jar, /home/fabinatix/.m2/repository/org/springframework/spring-jdbc/6.1.13/spring-jdbc-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-tx/6.1.13/spring-tx-6.1.13.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-spring-boot-starter/4.0.0/camel-spring-boot-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-spring-boot/4.0.0/camel-spring-boot-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-spring/4.0.0/camel-spring-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-management-api/4.0.0/camel-management-api-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-spring-main/4.0.0/camel-spring-main-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-main/4.0.0/camel-main-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-base/4.0.0/camel-base-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-util-json/4.0.0/camel-util-json-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-cloud/4.0.0/camel-cloud-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-core-model/4.0.0/camel-core-model-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-core-processor/4.0.0/camel-core-processor-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-cluster/4.0.0/camel-cluster-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-base-engine/4.0.0/camel-base-engine-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-health/4.0.0/camel-health-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-core-starter/4.0.0/camel-core-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-core-engine/4.0.0/camel-core-engine-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-api/4.0.0/camel-api-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-core-reifier/4.0.0/camel-core-reifier-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-util/4.0.0/camel-util-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-bean-starter/4.0.0/camel-bean-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-bean/4.0.0/camel-bean-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-browse-starter/4.0.0/camel-browse-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-browse/4.0.0/camel-browse-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-controlbus-starter/4.0.0/camel-controlbus-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-controlbus/4.0.0/camel-controlbus-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-dataformat-starter/4.0.0/camel-dataformat-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-dataformat/4.0.0/camel-dataformat-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-dataset-starter/4.0.0/camel-dataset-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-dataset/4.0.0/camel-dataset-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-direct-starter/4.0.0/camel-direct-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-direct/4.0.0/camel-direct-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-file-starter/4.0.0/camel-file-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-file/4.0.0/camel-file-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-language-starter/4.0.0/camel-language-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-language/4.0.0/camel-language-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-log-starter/4.0.0/camel-log-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-log/4.0.0/camel-log-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-mock-starter/4.0.0/camel-mock-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-mock/4.0.0/camel-mock-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-ref-starter/4.0.0/camel-ref-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-ref/4.0.0/camel-ref-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-rest-starter/4.0.0/camel-rest-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-rest/4.0.0/camel-rest-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-tooling-model/4.0.0/camel-tooling-model-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-saga-starter/4.0.0/camel-saga-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-saga/4.0.0/camel-saga-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-scheduler-starter/4.0.0/camel-scheduler-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-scheduler/4.0.0/camel-scheduler-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-seda-starter/4.0.0/camel-seda-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-seda/4.0.0/camel-seda-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-stub-starter/4.0.0/camel-stub-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-stub/4.0.0/camel-stub-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-timer-starter/4.0.0/camel-timer-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-timer/4.0.0/camel-timer-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-validator-starter/4.0.0/camel-validator-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-validator/4.0.0/camel-validator-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xpath-starter/4.0.0/camel-xpath-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-xpath/4.0.0/camel-xpath-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xslt-starter/4.0.0/camel-xslt-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-xslt/4.0.0/camel-xslt-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-xml-jaxp-starter/4.0.0/camel-xml-jaxp-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-xml-jaxp/4.0.0/camel-xml-jaxp-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-xml-jaxp-util/4.0.0/camel-xml-jaxp-util-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-xml-io-util/4.0.0/camel-xml-io-util-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-stream-starter/4.0.0/camel-stream-starter-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-stream/4.0.0/camel-stream-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-support/4.0.0/camel-support-4.0.0.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-test/3.3.4/spring-boot-starter-test-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-test/3.3.4/spring-boot-test-3.3.4.jar, /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/3.3.4/spring-boot-test-autoconfigure-3.3.4.jar, /home/fabinatix/.m2/repository/com/jayway/jsonpath/json-path/2.9.0/json-path-2.9.0.jar, /home/fabinatix/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar, /home/fabinatix/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar, /home/fabinatix/.m2/repository/net/minidev/json-smart/2.5.1/json-smart-2.5.1.jar, /home/fabinatix/.m2/repository/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.jar, /home/fabinatix/.m2/repository/org/ow2/asm/asm/9.6/asm-9.6.jar, /home/fabinatix/.m2/repository/org/assertj/assertj-core/3.25.3/assertj-core-3.25.3.jar, /home/fabinatix/.m2/repository/org/awaitility/awaitility/4.2.2/awaitility-4.2.2.jar, /home/fabinatix/.m2/repository/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar, /home/fabinatix/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.jar, /home/fabinatix/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar, /home/fabinatix/.m2/repository/org/springframework/spring-core/6.1.13/spring-core-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-jcl/6.1.13/spring-jcl-6.1.13.jar, /home/fabinatix/.m2/repository/org/springframework/spring-test/6.1.13/spring-test-6.1.13.jar, /home/fabinatix/.m2/repository/org/xmlunit/xmlunit-core/2.9.1/xmlunit-core-2.9.1.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-test-spring-junit5/4.0.0/camel-test-spring-junit5-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-test-junit5/4.0.0/camel-test-junit5-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-core-languages/4.0.0/camel-core-languages-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-spring-xml/4.0.0/camel-spring-xml-4.0.0.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-xml-jaxb/4.0.0/camel-xml-jaxb-4.0.0.jar, /home/fabinatix/.m2/repository/com/sun/xml/bind/jaxb-core/4.0.5/jaxb-core-4.0.5.jar, /home/fabinatix/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.jar, /home/fabinatix/.m2/repository/com/sun/xml/bind/jaxb-impl/4.0.5/jaxb-impl-4.0.5.jar, /home/fabinatix/.m2/repository/org/apache/camel/camel-core-xml/4.0.0/camel-core-xml-4.0.0.jar, /home/fabinatix/.m2/repository/com/h2database/h2/2.2.224/h2-2.2.224.jar, /home/fabinatix/.m2/repository/org/mockito/mockito-core/4.0.0/mockito-core-4.0.0.jar, /home/fabinatix/.m2/repository/net/bytebuddy/byte-buddy/1.14.19/byte-buddy-1.14.19.jar, /home/fabinatix/.m2/repository/net/bytebuddy/byte-buddy-agent/1.14.19/byte-buddy-agent-1.14.19.jar, /home/fabinatix/.m2/repository/org/objenesis/objenesis/3.2/objenesis-3.2.jar, /home/fabinatix/.m2/repository/org/mockito/mockito-junit-jupiter/4.0.0/mockito-junit-jupiter-4.0.0.jar, /home/fabinatix/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.10.3/junit-jupiter-api-5.10.3.jar, /home/fabinatix/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar, /home/fabinatix/.m2/repository/org/junit/platform/junit-platform-commons/1.10.3/junit-platform-commons-1.10.3.jar, /home/fabinatix/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar, /home/fabinatix/.m2/repository/org/junit/jupiter/junit-jupiter/5.7.0/junit-jupiter-5.7.0.jar, /home/fabinatix/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.10.3/junit-jupiter-params-5.10.3.jar, /home/fabinatix/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.10.3/junit-jupiter-engine-5.10.3.jar, /home/fabinatix/.m2/repository/org/junit/platform/junit-platform-engine/1.10.3/junit-platform-engine-1.10.3.jar, /home/fabinatix/.m2/repository/org/projectlombok/lombok/1.18.28/lombok-1.18.28.jar, /home/fabinatix/.m2/repository/org/postgresql/postgresql/42.7.4/postgresql-42.7.4.jar, /home/fabinatix/.m2/repository/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.jar]
[[1;36mDEBUG[m] (f) useIncrementalCompilation = true
[[1;36mDEBUG[m] (f) verbose = false
[[1;36mDEBUG[m] -- end configuration --
[[1;36mDEBUG[m] Using compiler 'javac'.
[[1;36mDEBUG[m] Adding /home/fabinatix/spring-boot-camel-learning/target/generated-test-sources/test-annotations to test-compile source roots:
/home/fabinatix/spring-boot-camel-learning/src/test/java
[[1;36mDEBUG[m] New test-compile source roots:
/home/fabinatix/spring-boot-camel-learning/src/test/java
/home/fabinatix/spring-boot-camel-learning/target/generated-test-sources/test-annotations
[[1;36mDEBUG[m] CompilerReuseStrategy: reuseCreated
[[1;36mDEBUG[m] useIncrementalCompilation enabled
[[1;36mDEBUG[m] New dependency detected: /home/fabinatix/spring-boot-camel-learning/target/classes
[[1;34mINFO[m] Changes detected - recompiling the module!
[[1;36mDEBUG[m] Classpath:
[[1;36mDEBUG[m] /home/fabinatix/spring-boot-camel-learning/target/test-classes
[[1;36mDEBUG[m] /home/fabinatix/spring-boot-camel-learning/target/classes
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-web/3.3.4/spring-boot-starter-web-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter/3.3.4/spring-boot-starter-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot/3.3.4/spring-boot-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.3.4/spring-boot-autoconfigure-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-logging/3.3.4/spring-boot-starter-logging-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/ch/qos/logback/logback-classic/1.5.8/logback-classic-1.5.8.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/ch/qos/logback/logback-core/1.5.8/logback-core-1.5.8.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.23.1/log4j-to-slf4j-2.23.1.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/logging/log4j/log4j-api/2.23.1/log4j-api-2.23.1.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/slf4j/jul-to-slf4j/2.0.16/jul-to-slf4j-2.0.16.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-json/3.3.4/spring-boot-starter-json-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.17.2/jackson-databind-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.17.2/jackson-annotations-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.17.2/jackson-core-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.17.2/jackson-datatype-jdk8-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.17.2/jackson-datatype-jsr310-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.17.2/jackson-module-parameter-names-2.17.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/3.3.4/spring-boot-starter-tomcat-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.30/tomcat-embed-core-10.1.30.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.30/tomcat-embed-el-10.1.30.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.30/tomcat-embed-websocket-10.1.30.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-web/6.1.13/spring-web-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-beans/6.1.13/spring-beans-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-webmvc/6.1.13/spring-webmvc-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-aop/6.1.13/spring-aop-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-context/6.1.13/spring-context-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-expression/6.1.13/spring-expression-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-actuator/3.3.4/spring-boot-starter-actuator-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-actuator-autoconfigure/3.3.4/spring-boot-actuator-autoconfigure-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-actuator/3.3.4/spring-boot-actuator-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/io/micrometer/micrometer-observation/1.13.4/micrometer-observation-1.13.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/io/micrometer/micrometer-commons/1.13.4/micrometer-commons-1.13.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/io/micrometer/micrometer-jakarta9/1.13.4/micrometer-jakarta9-1.13.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/io/micrometer/micrometer-core/1.13.4/micrometer-core-1.13.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/hdrhistogram/HdrHistogram/2.2.2/HdrHistogram-2.2.2.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/boot/spring-boot-starter-jdbc/3.3.4/spring-boot-starter-jdbc-3.3.4.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-jdbc/6.1.13/spring-jdbc-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/springframework/spring-tx/6.1.13/spring-tx-6.1.13.jar
[[1;36mDEBUG[m] /home/fabinatix/.m2/repository/org/apache/camel/springboot/camel-spring-boot-starter/4.0.0/camel-spring-boot-starter-4.0.0.jar