Prepare Legal for CIm - Fix shading and mapping (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;
TypeMapper used in Legal has a leaking
abstraction, it forces us to add Datastore import into consumer service but that's not acceptable as it violates CIm architecture. As temp solution, TypeMapper was moved to GC-OSM.