I have 2 projects, lets say project A and project B. Project A has a Maven dependency on Project B. Both projects contain the class Test
in the same package.
Now when I import,
import com.my.package.Test;
From another class in Project A, I think (at runtime) it uses the Test class from project B rather than the class contained in the same project.
Does anyone know if this is how it is supposed to work?