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;