Spring boot missing HexCodec dependency

Hand’t know the fc: search option. Learned something new again…

hello @christianGen @Vampire , finally I have figured it out , it appears that gradle by default in case we have the same artifact with different versions takes the higher version number in my case the dependency
io.zipkin.brave:brave was with version 5.13.3 so I had to use 5.5.1 to fix this issue

    implementation('io.zipkin.brave:brave:5.5.1') {
        because 'version 5.13.3 has the needed class in brave/internal/codec/HexCodec'
    }

thanks a lot for the big help guys especially @christianGen , much appreciated :slight_smile: