Skip to content

Prepare Legal for CIm - Fix shading (GONRG-9935)

Rustam Lotsmanenko (EPAM) requested to merge fix-shading into main

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;

Merge request reports