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;

Also shading grpc requires us to use of transformers, otherwise, we will see errors like ManagedChannelProvider$ProviderNotFoundException in the driver consumer.

Merge request reports