Prepare Legal for CIm - Fix shading (GONRG-9935)
Spring imports were shaded, thus not possible to autoconfigure the driver.
Before fix, in the compiled code:
import shaded.obm.org.springframework.stereotype.Repository;
After fixing, in the compiled code:
import org.springframework.stereotype.Repository;
Also shading grpc
requires us to use of transformers, otherwise, we will see errors like ManagedChannelProvider$ProviderNotFoundException
in the driver consumer.